Rev 18 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | moos | 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"> |
||
18 | moos | 3 | <display-name>WebEngineeringProject</display-name> |
4 | |||
20 | moos | 5 | |
6 | <!-- Start of SiteMesh stuff --> |
||
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> |
||
18 | moos | 21 | <filter-name>struts2</filter-name> |
22 | <filter-class> |
||
23 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> |
||
24 | </filter> |
||
25 | <filter-mapping> |
||
26 | <filter-name>struts2</filter-name> |
||
27 | <url-pattern>/*</url-pattern> |
||
28 | </filter-mapping> |
||
20 | moos | 29 | <!-- End struts 2 --> |
18 | moos | 30 | |
2 | moos | 31 | <welcome-file-list> |
32 | <welcome-file>index.jsp</welcome-file> |
||
33 | </welcome-file-list> |
||
20 | moos | 34 | |
2 | moos | 35 | </web-app> |