thinkuncle / thinkuncle.github.io

thinkuncle
4 stars 0 forks source link

spring 问题库-持续更新 #88

Open thinkuncle opened 8 years ago

thinkuncle commented 8 years ago

spring @ResponseBody响应内容中文乱码

@ResponseBody 作用: 该注解用于将Controller的方法返回的对象,通过适当的HttpMessageConverter转换为指定格式后,写入到Response对象的body数据区。

方案1

spring配置文件中增加

<mvc:annotation-driven />

配置返回元数据 @RequestMapping(value="/test",produces="text/html;charset=utf-8")

方案2