struts2参数乱码问题解决

struts | 2019-09-13 10:02:39

我的struts2配置<result name="search" type="redirect">index.jsp?wd=${wd}</result>,然后在jsp页面上接受参数,中文就显示乱码,结局方法如下。
1.加入encode配置

<result name="search" type="redirect">
                    <param name="location">index.jsp?wd=${wd}</param>
                    <param name="encode">true</param>
            </result>


有点麻烦,每个action都要加。

2.定义struts2编码

<constant name="struts.i18n.encoding" value="gbk"></constant>


在struts标签中加入这个配置就可以解决乱码问题。

登录后即可回复 登录 | 注册
    
关注编程学问公众号