Rev 20 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 20 | Rev 31 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | <?xml version="1.0" encoding="UTF-8"?>
|
1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
|
2 | <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
- | 3 | xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
- | 4 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
- | 5 | id="WebApp_ID" version="2.5">
|
|
3 | <display-name>WebEngineeringProject</display-name> |
6 | <display-name>WebEngineeringProject</display-name> |
4 | 7 | ||
5 | 8 | ||
6 | <!-- Start of SiteMesh stuff -->
|
9 | <!-- Start of SiteMesh stuff -->
|
7 | <filter>
|
10 | <filter>
|
8 | <filter-name>sitemesh</filter-name> |
11 | <filter-name>sitemesh</filter-name> |
9 | <filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class> |
12 | <filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class> |
10 | </filter>
|
13 | </filter>
|
11 | 14 | ||
12 | <filter-mapping>
|
15 | <filter-mapping>
|
13 | <filter-name>sitemesh</filter-name> |
16 | <filter-name>sitemesh</filter-name> |
14 | <url-pattern>*</url-pattern> |
17 | <url-pattern>*</url-pattern> |
15 | </filter-mapping>
|
18 | </filter-mapping>
|
16 | <!-- End of SiteMesh stuff -->
|
19 | <!-- End of SiteMesh stuff -->
|
17 | 20 | ||
18 | 21 | ||
19 | <!-- Begin struts 2 -->
|
22 | <!-- Begin struts 2 -->
|
20 | <filter>
|
23 | <filter>
|
21 | <filter-name>struts2</filter-name> |
24 | <filter-name>struts2</filter-name> |
22 | <filter-class>
|
25 | <filter-class>
|
23 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
|
26 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter |
- | 27 | </filter-class>
|
|
24 | </filter>
|
28 | </filter>
|
25 | <filter-mapping>
|
29 | <filter-mapping>
|
26 | <filter-name>struts2</filter-name> |
30 | <filter-name>struts2</filter-name> |
27 | <url-pattern>/*</url-pattern> |
31 | <url-pattern>/*</url-pattern> |
28 | </filter-mapping>
|
32 | </filter-mapping>
|
29 | <!-- End struts 2 -->
|
33 | <!-- End struts 2 -->
|
30 | 34 | ||
31 | <welcome-file-list>
|
35 | <welcome-file-list>
|
32 | <welcome-file>index.jsp</welcome-file> |
36 | <welcome-file>index.jsp</welcome-file> |
33 | </welcome-file-list>
|
37 | </welcome-file-list>
|
34 | 38 | ||
35 | </web-app>
|
39 | </web-app>
|
36 | 40 |