正确的两种配置过滤文件  jsp 和 action  


<filter>

<filter-name>struts2</filter-name>

<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>

</filter>

<filter-mapping>

<filter-name>struts2</filter-name>

<url-pattern>/*</url-pattern>

</filter-mapping>



<filter>

<filter-name>struts2</filter-name>

<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>

</filter>

<filter-mapping>

<filter-name>struts2</filter-name>

<url-pattern>*.jsp</url-pattern>

<url-pattern>*.action</url-pattern>


</filter-mapping>


如果配置成如下  

<url-pattern>*.jsp</url-pattern>

会出

HTTP Status 404 - /strutsweb/users_login.action


如果配置成如下  

<url-pattern>*.action</url-pattern>

在jsp页面中struts的标签不能使用,使用会报错误