web.xml 配置

来源:互联网 发布:骑马与砍杀战团mac版 编辑:程序博客网 时间:2024/05/29 13:13

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
 xmlns="http://java.sun.com/xml/ns/j2ee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">


 <filter>
  <filter-name>strutsfilter</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
 </filter>
 <filter-mapping>
  <filter-name>strutsfilter</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>

 

</web-app>

原创粉丝点击