Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 한글
- HTML5
- 호환성
- SSL
- JSTL
- exception
- maven
- RADIO
- java
- checbox
- 오라클
- 문자열
- @RequestBody
- null
- json
- 이클립스
- 웹 플랫폼 설치 관리자
- MYSQL
- spring form tag
- php
- 스크립트
- 톰캣
- DB
- jquery
- 전자정부 표준프레임워크
- Oracle
- html
- switch
- 날짜
- 네이버스마트 에디터
Archives
- Today
- Total
개인적인 정리
Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986 본문
전자정부표준프레임워크/Exception 및 Error
Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
yeon.Biju 2019. 3. 15. 09:41
Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
검색시 위와 같은 오류가 발생.
원인 : 익스에서 검색어로 한글을 넘겨줌
크롬에서는 잘 되다보니 아무생각 없이 검색이 잘 된다고 생각하고 익스에서는 확인을 안하는 버릇이 있는 것 같다.
1. javascript에서 처리
encodeURI() 를 사용한다.
var keyWord = encodeURI(keyWord);
이제 keyWord 를 parameter로 넘겨준다.
2. java에서도 비슷한 방법으로 처리가 가능하다.
'전자정부표준프레임워크 > Exception 및 Error' 카테고리의 다른 글
Received fatal alert: protocol_version (0) | 2020.08.25 |
---|---|
501 HTTPS Required. (0) | 2020.08.25 |
'com.mysql.jdbc.Driver'. This is deprecated (0) | 2020.02.17 |
The import com.mysql cannot be resolved (0) | 2020.02.17 |
Neither BindingResult nor plain target object for bean name (0) | 2019.01.30 |
The specified JRE installation does not exist (0) | 2018.12.14 |
Scala java.lang.NoSuchMethodError: scala.Predef$.augmentString error (0) | 2018.12.14 |
java.lang.ClassNotFoundException: com.twitter.Regex (0) | 2018.12.14 |
Comments