1.ajax 返回汉字乱码
解决方法:
http://blog.sina.com.cn/s/blog_5f39177b0101it7h.html
//方案一
response.setCharacterEncoding("UTF-8"); //设置编码格式
response.setContentType("text/html"); //设置数据格式
PrintWriter out = response.getWriter(); //获取写入对象
out.print(json); //将json数据写入流中
2. redirect 汉字乱码
使用 Model 的 addAttribute 添加属性