strut2固定是request的请求重定向方式进行跳转
如果界面中用forword来完成跳转:<jsp:forword page="index.action"/>
会报请求错误的异常,所以需要在web.xml中修改strut2的配置
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>FORWORD</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
这样既可以接收request请求,又可以接收forword