升级struts 2 jar

时间:2011-02-17 09:11:03

标签: struts2

在基于Struts 2的项目中,我使用的一个jar文件是struts2-core-2.0.14.jar,当我删除这个jar并用struts2-core-2.1.8.1.jar替换它时应用程序无法开始。

1 个答案:

答案 0 :(得分:0)

大多数可能,据我所知,问题出在web.xml中声明的过滤器类

对于struts2.0.x的版本,类“org.apache.struts2.dispatcher.FilterDispatcher”用作过滤器。

对于struts2.1.x的版本,使用“org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter”作为过滤器。

如需更多信息,请参阅 http://www.mkyong.com/struts2/difference-between-struts-2-filterdispatcher-and-strutsprepareandexecutefilter/