1.替换如下jar包
2.修改web.xml中的struts过滤器配置
将原来的过滤配置注释掉
替换为:
3.struts.xml配置
4. 发现程序中有类报错:缺少 import org.apache.commons.lang.xwork.StringUtils;
解决方法:用 import org.apache.commons.lang3.StringUtils;替代
报错原因:因为原来的xwork-core-2.2.jar中包含此类,升级后不包含此类了
即可!
1.替换如下jar包
2.修改web.xml中的struts过滤器配置
将原来的过滤配置注释掉
替换为:
3.struts.xml配置
4. 发现程序中有类报错:缺少 import org.apache.commons.lang.xwork.StringUtils;
解决方法:用 import org.apache.commons.lang3.StringUtils;替代
报错原因:因为原来的xwork-core-2.2.jar中包含此类,升级后不包含此类了
即可!