Rev 2 | Rev 20 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 18 | ||
---|---|---|---|
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>Web Engineering</display-name> |
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 | ||
4 | <welcome-file-list>
|
15 | <welcome-file-list>
|
5 | <welcome-file>index.html</welcome-file> |
16 | <welcome-file>index.html</welcome-file> |
6 | <welcome-file>index.htm</welcome-file> |
17 | <welcome-file>index.htm</welcome-file> |
7 | <welcome-file>index.jsp</welcome-file> |
18 | <welcome-file>index.jsp</welcome-file> |
8 | <welcome-file>default.html</welcome-file> |
19 | <welcome-file>default.html</welcome-file> |
9 | <welcome-file>default.htm</welcome-file> |
20 | <welcome-file>default.htm</welcome-file> |
10 | <welcome-file>default.jsp</welcome-file> |
21 | <welcome-file>default.jsp</welcome-file> |
11 | </welcome-file-list>
|
22 | </welcome-file-list>
|
- | 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>
|
|
12 | </web-app>
|
33 | </web-app>
|
13 | 34 |