struts2 编码

struts2 的默认编码是UTF8

 

今天遇到问题, 项目中 能设置编码的地方 均设置为 GBK 

web.xml  

页面

数据库连接

 

数据库编码

 

但是依然在页面中传递 中文的时候 变成乱码 导致数据库报错

 

Illegal mix of collations (gbk_chinese_ci,IMPLICIT) and (utf8_general_ci,COE

 

 

后来查询得知struts2的编码是 utf8 得指定为 GBK

 

所以在 struts.xml文件中设置  <constant name="struts.i18n.encoding" value="GBK" />

问题的到解决

你可能感兴趣的:(struts2)