search

Home  >  Q&A  >  body text

java - Configuring the springmvc character filter, how to solve the problem when the Chinese requested is still garbled?

<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
淡淡烟草味淡淡烟草味2781 days ago629

reply all(2)I'll reply

  • 淡淡烟草味

    淡淡烟草味2017-05-17 10:02:32

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

    reply
    0
  • 漂亮男人

    漂亮男人2017-05-17 10:02:32

    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

    reply
    0
  • Cancelreply