Rev 2 | Rev 20 | 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 | |||
| 5 | <filter> |
||
| 6 | <filter-name>struts2</filter-name> |
||
| 7 | <filter-class> |
||
| 8 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> |
||
| 9 | </filter> |
||
| 10 | <filter-mapping> |
||
| 11 | <filter-name>struts2</filter-name> |
||
| 12 | <url-pattern>/*</url-pattern> |
||
| 13 | </filter-mapping> |
||
| 14 | |||
| 2 | moos | 15 | <welcome-file-list> |
| 16 | <welcome-file>index.html</welcome-file> |
||
| 17 | <welcome-file>index.htm</welcome-file> |
||
| 18 | <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> |
||
| 18 | moos | 23 | <servlet> |
| 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> |
||
| 2 | moos | 33 | </web-app> |