개발자의 길

[tomcat] 파라메타(parameter) 넘길 시 한글 깨짐 해결 본문

9. TOMCAT

[tomcat] 파라메타(parameter) 넘길 시 한글 깨짐 해결

자르르 2015. 6. 24. 10:56


톰캣(Tomcat)을 셋팅하고 Web 프로그램을 하다보면 post 혹은 get 방식으로 

파라미터(parameter)을 전달할때 한글이 이상하게 깨져서 나올 때가 있습니다.


위와 같은 경우에는 Encording 방식을 변경 함으로써 한글 깨짐을 방지 할 수 

있습니다.


1. get 방식에서 한글이 깨지는 경우


tomcat 설치 폴더의 conf 폴더에서 server.xml 파일을 열고

아래와 같이 되어 있는 부분에 URIEncoding="utf-8" 를 추가하여 줍니다.


<Connector port="80" protocol="HTTP/1.1" 

connectionTimeout="20000" redirectPort="8443" />

<Connector port="80" protocol="HTTP/1.1" 

connectionTimeout="20000" URIEncoding="utf-8" redirectPort="8443" />


2. post 방식에서 한글이 깨질 경우


tomcat 설치 폴더의 conf 폴더에서 web.xml 파일을 열고


<filter-mapping>

    <filter-name>setCharacterEncodingFilter</filter-name>

    <url-pattern>/*</url-pattern>

</filter-mapping>

부분의 주석과


<filter>

    <filter-name>setCharacterEncodingFilter</filter-name>

    <filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>

    <init-param>

        <param-name>encoding</param-name>

        <param-value>UTF-8</param-value>

    </init-param>

    <!-- async-supported>true</async-supported -->

</filter>


위 주석 부분을 해제해주거나 위의 내용을 넣어주시면 됩니다.

해당 내용은 web.xml 의 400 라인과 485라인 쯤에 있습니다.


 

 

'9. TOMCAT' 카테고리의 다른 글

[tomcat] jndi 설정  (2) 2015.06.17
web server 및 어플리케이션의 이해와 tomcat 구조  (7) 2010.07.27
tomcat 성능 향상 방법 - 튜닝  (0) 2010.02.17
tomcat ThreadPool  (0) 2009.12.24


이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
공유하기 링크
Comments