SpringMvc解决返回前台数据中文乱码

1.加注解方式,第一个是返回json格式,第二个是文本格式

@RequestMapping(value="/getCartGoodsListByUserId",produces="application/json;charset=UTF-8")

@RequestMapping(value="/getCartGoodsListByUserId",produces = "text/plain;charset=utf-8") 

2.在mvc配置文件中

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

猜你喜欢

转载自blog.csdn.net/kxj19980524/article/details/84389217