使用@ResponseBody注解返回字符串乱码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用@ResponseBody注解返回字符串乱码相关的知识,希望对你有一定的参考价值。
方法一、在注解@RequestMapping 中添加 produces = {"application/json;charset=UTF-8"}
方法二、在配置文件中添加:
<mvc:annotation-driven> <!-- 解决返回String时乱码 --> <mvc:message-converters register-defaults="true"> <bean class="org.springframework.http.converter.StringHttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value>text/plain;charset=UTF-8</value> <value>text/html;charset=UTF-8</value> </list> </property> </bean> </mvc:message-converters> </mvc:annotation-driven>
以上是关于使用@ResponseBody注解返回字符串乱码的主要内容,如果未能解决你的问题,请参考以下文章
Spring MVC @ResponseBody注解返回值中文乱码问题