环境描述
前端:jsp
后端:SpringMVC Controller
尽管jsp页面已设置了pageEncoding:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
然后在控制器中,读取到的对应参数如果含有中文,则出现乱码,例如:
public ModelAndView search(@RequestParam("keyword") String keyword) { //keyword乱码 }
解决办法
新建xml文件名为“glassfish-web”,添加以下代码:
<?xml version="1.0" encoding="UTF-8"?><glassfish-web-app> <parameter-encoding default-charset="UTF-8" /></glassfish-web-app>
保存至 /WEB-INF 目录下即可。
参考链接:http://stackoverflow.com/questions/25870583/glassfish-spring-not-correctly-decoding-utf-8-in-post