Rev 20 | 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"?> |
31 | PointedEar | 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"> |
||
18 | moos | 6 | <display-name>WebEngineeringProject</display-name> |
31 | PointedEar | 7 | |
8 | |||
9 | <!-- Start of SiteMesh stuff --> |
||
10 | <filter> |
||
11 | <filter-name>sitemesh</filter-name> |
||
12 | <filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class> |
||
13 | </filter> |
||
14 | |||
15 | <filter-mapping> |
||
16 | <filter-name>sitemesh</filter-name> |
||
17 | <url-pattern>*</url-pattern> |
||
18 | </filter-mapping> |
||
19 | <!-- End of SiteMesh stuff --> |
||
20 | |||
21 | |||
22 | <!-- Begin struts 2 --> |
||
23 | <filter> |
||
24 | <filter-name>struts2</filter-name> |
||
25 | <filter-class> |
||
26 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter |
||
27 | </filter-class> |
||
28 | </filter> |
||
29 | <filter-mapping> |
||
30 | <filter-name>struts2</filter-name> |
||
31 | <url-pattern>/*</url-pattern> |
||
32 | </filter-mapping> |
||
33 | <!-- End struts 2 --> |
||
34 | |||
2 | moos | 35 | <welcome-file-list> |
36 | <welcome-file>index.jsp</welcome-file> |
||
37 | </welcome-file-list> |
||
31 | PointedEar | 38 | |
2 | moos | 39 | </web-app> |