SpringMVC——json数据传输时中文乱码的解决方法

问题描述:
在没配置编码方式时很容易出现使用json从后台向网页中传输数据时中文出现乱码的问题。
解决方法:
通过向json注解驱动器下的消息转换器中添加一个bean统一编码格式为UTF-8,代码如下

    
    <mvc:annotation-driven>
        
        <mvc:message-converters>
            
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>application/json;charset=UTF-8value>
                        <value>text/html;charset=UTF-8value>
                    list>
                property>
            bean>
            
            <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            bean>
        mvc:message-converters>
    mvc:annotation-driven>

你可能感兴趣的:(json,中文乱码)