当前位置: 代码迷 >> Web前端 >> struts2.2.3 web.xml配备变化
  详细解决方案

struts2.2.3 web.xml配备变化

热度:35   发布时间:2012-08-21 13:00:22.0
struts2.2.3 web.xml配置变化
<filter>
    <filter-name>struts2</filter-name>
      <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
 
  <filter-mapping>
    <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
  </filter-mapping>


  相关解决方案