首页 > 代码库 > Spring MVC中@ResponseBody 返回中文字符串乱码问题

Spring MVC中@ResponseBody 返回中文字符串乱码问题

在MVC配置文件中配置

 

<mvc:annotation-driven>
  <!-- 解决@ResponseBody返回中文乱码 -->
  <mvc:message-converters register-defaults="true">
    <bean class="org.springframework.http.converter.StringHttpMessageConverter">
      <property name="supportedMediaTypes" value="http://www.mamicode.com/text/html;charset=UTF-8" />
    </bean>
  </mvc:message-converters>
</mvc:annotation-driven>

Spring MVC中@ResponseBody 返回中文字符串乱码问题