Rev 18 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 18 | Rev 20 | ||
|---|---|---|---|
| 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" 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">
|
| 3 | <display-name>WebEngineeringProject</display-name> |
3 | <display-name>WebEngineeringProject</display-name> |
| 4 | 4 | ||
| - | 5 | ||
| - | 6 | <!-- Start of SiteMesh stuff -->
|
|
| 5 | <filter>
|
7 | <filter>
|
| - | 8 | <filter-name>sitemesh</filter-name> |
|
| - | 9 | <filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class> |
|
| - | 10 | </filter>
|
|
| - | 11 | ||
| - | 12 | <filter-mapping>
|
|
| - | 13 | <filter-name>sitemesh</filter-name> |
|
| - | 14 | <url-pattern>*</url-pattern> |
|
| - | 15 | </filter-mapping>
|
|
| - | 16 | <!-- End of SiteMesh stuff -->
|
|
| - | 17 | ||
| - | 18 | ||
| - | 19 | <!-- Begin struts 2 -->
|
|
| - | 20 | <filter>
|
|
| 6 | <filter-name>struts2</filter-name> |
21 | <filter-name>struts2</filter-name> |
| 7 | <filter-class>
|
22 | <filter-class>
|
| 8 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
|
23 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
|
| 9 | </filter>
|
24 | </filter>
|
| 10 | <filter-mapping>
|
25 | <filter-mapping>
|
| 11 | <filter-name>struts2</filter-name> |
26 | <filter-name>struts2</filter-name> |
| 12 | <url-pattern>/*</url-pattern> |
27 | <url-pattern>/*</url-pattern> |
| 13 | </filter-mapping>
|
28 | </filter-mapping>
|
| - | 29 | <!-- End struts 2 -->
|
|
| 14 | 30 | ||
| 15 | <welcome-file-list>
|
31 | <welcome-file-list>
|
| 16 | <welcome-file>index.html</welcome-file> |
- | |
| 17 | <welcome-file>index.htm</welcome-file> |
- | |
| 18 | <welcome-file>index.jsp</welcome-file> |
32 | <welcome-file>index.jsp</welcome-file> |
| 19 | <welcome-file>default.html</welcome-file> |
- | |
| 20 | <welcome-file>default.htm</welcome-file> |
- | |
| 21 | <welcome-file>default.jsp</welcome-file> |
- | |
| 22 | </welcome-file-list>
|
33 | </welcome-file-list>
|
| 23 | <servlet>
|
34 | |
| 24 | <description></description>
|
- | |
| 25 | <display-name>Servlet</display-name> |
- | |
| 26 | <servlet-name>Servlet</servlet-name> |
- | |
| 27 | <servlet-class>Servlet</servlet-class> |
- | |
| 28 | </servlet>
|
- | |
| 29 | <servlet-mapping>
|
- | |
| 30 | <servlet-name>Servlet</servlet-name> |
- | |
| 31 | <url-pattern>/Servlet</url-pattern> |
- | |
| 32 | </servlet-mapping>
|
- | |
| 33 | </web-app>
|
35 | </web-app>
|
| 34 | 36 | ||