程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Struts 2中的web.xml配置文件

Struts 2中的web.xml配置文件

編輯:關於JAVA

web.xml文件

提供web工程部署描述信息,包含Struts2的FilterDispatcher組件配置信息,這個過濾器能夠初始化Struts2框架,處理所有請求。最基本的配置方式如程序清單1.9所示。

<?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>action2</filter-name> 
        <filter-class> 
            org.apache.struts2.dispatcher.FilterDispatcher 
        </filter-class> 
    </filter> 
    <filter-mapping> 
        <filter-name>action2</filter-name> 
        <url-pattern>/*</url-pattern> 
    </filter-mapping> 
     
</web-app>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved