spirng background to the foreground json garbled

spring 4.0+

At that time, the json background was ctrl+shift+i in Chinese, but the ajax callback was garbled, so it was solved. Originally, web.xml has been configured as follows, mainly adding a few sentences to spring.xml

 

web.xml configuration:

<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>

 

 spring-mvc.xml placement:

<!-- 处理请求时返回json字符串的中文乱码问题 -->
    <mvc:annotation-driven>
        <mvc:message-converters>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>application/json;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326973279&siteId=291194637