java - Configuring the springmvc character filter, how to solve the problem when the Chinese requested is still garbled?
淡淡烟草味
淡淡烟草味 2017-05-17 10:00:32
0
2
569
<filter>
    <filter-name>encodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
        <param-name>forceEncoding</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>encodingFilter</filter-name>
    <url-pattern>/</url-pattern>
</filter-mapping>
用postman输入中文参数调用,收到的都是乱码,必须手动把参数从iso8859-1转成utf-8
淡淡烟草味
淡淡烟草味

reply all(2)
淡淡烟草味

Try to modify the encoding settings of the servlet container. For tomcat, it is server.xml. In my impression

漂亮男人

1.tomcat’s server.xml configuration

<Connector port="8080" protocol="HTTP/1.1"  
               connectionTimeout="20000"  
               redirectPort="8443"   
               URIEncoding="UTF-8"  
               useBodyEncodingForURI="true"  
               /> 

2. Inherit HttpServletRequestWrapper and override the getParameter method, and perform string encoding conversion in this method

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!