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
- tomcat
- css
- R프로그래밍
- Android Apk 이름 변경
- android error
- Android
- release unsigned
- release Apk
- java error
- JavaScript
- CSS사용법
- DataTable
- Firebase
- MySQL
- Android Apk
- fragment
- Eclipse
- error
- spring
- Java
- 안드로이드
- android fragment
- html
- Android Apk 이름
- apache gzip
- jQuery
- Program type already present
- Exception
- FLUTTER
- Kotlin
Archives
- Today
- Total
selfstarter
HTTP 요청 헤더를 파싱하는 중 오류 발생 본문
Problem
파일 다운로드를 위해 location.href=url 코드를 실행하는데 에러발생
Error
정보: HTTP 요청 헤더를 파싱하는 중 오류 발생
비고: HTTP 요청 파싱 오류들이 더 발생하는 경우 DEBUG 레벨 로그로 기록될 것입니다.
java.lang.IllegalArgumentException: 요청 타겟에서 유효하지 않은 문자가 발견되었습니다. 유효한 문자들은 RFC 7230과 RFC 3986에 정의되어 있습니다.
Cause
get url의 인자를
url += "$imageId="+data
이런식으로 추가했는데 data에 값이 아니라 input 태그 자체를 넣어서 에러 발생.
아래코드에서 val()를 빼먹어서 input자체가 들어감. 수정 후 해결
data = $("input[name=imageId]").val()
'Server > Spring' 카테고리의 다른 글
The server cannot be started because one or more of the ports are invalid. Open the server editor and correct the invalid ports. (0) | 2020.08.04 |
---|---|
MyBatis resultType bool 사용하기 (0) | 2020.07.20 |
Eclipse 프로젝트 빨간색 느낌표 (0) | 2020.07.15 |
Mybatis 사용 시 주의 사항 (0) | 2020.07.03 |
jaxb 사용법 (0) | 2020.07.02 |
Comments