响应数据中文乱码
乱码原因:没有给客户端浏览器指定响应的编码格式,浏览器会默认使用ios-8859-1来对传递过来的数据进行解码
content-type解释:https://blog.csdn.net/chenzuen113113/article/details/80904590
我的解决办法:加一个 produces
@ResponseBody @RequestMapping(value = "/helllo",produces="text/html;charset=UTF-8")
没使用前
使用后: