#springmvc ajax请求中文乱码问题
最近前端用jquery的get请求向后台请求字符串,字符串中含有中文,到前台显示的时候中文为乱码。
解决方案:
在@RequestMapping里面加入produces = "text/html;charset=UTF-8" 。
@RequestMapping(value = "/test", method = RequestMethod.GET, produces = "text/html;charset=UTF-8")
@ResponseBody
public String returnText(){}
该方法能够有效解决乱码问题且对代码的改动较小。