Spring - get방식일때 한글 깨질때 해결 방법

Published on: 2009. 10. 26. 17:22 by louis.dev
web.xml 파일에 uri encoding 설정하는 부분이 있다. 이는 보통 post방식의 인코딩을 지원하지만 get방식은 지원하지 않는다.
이럴때는 톰캣의 server.xml파일을 수정하면 된다.

Connector(두개가 있다.) 부분에 attribute부분에 URIEncoding="EUC-KR" 추가 하면 get방식의 한글 깨짐 현상을 없앨 수 있다

예)
<Connector connectionTimeout="20000" port="8989" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="EUC-KR"/>
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="EUC-KR"/>