Rev 1246 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
936 | dev | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
2 | |||
3 | <!DOCTYPE web-app |
||
4 | PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" |
||
5 | "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"> |
||
6 | |||
7 | <web-app> |
||
8 | |||
9 | <!-- Standard Action Servlet Configuration (with debugging) --> |
||
10 | <servlet> |
||
11 | <servlet-name>action</servlet-name> |
||
12 | <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> |
||
13 | <init-param> |
||
14 | <param-name>config</param-name> |
||
15 | <param-value>/WEB-INF/struts-config.xml</param-value> |
||
16 | </init-param> |
||
17 | <init-param> |
||
18 | <param-name>debug</param-name> |
||
19 | <param-value>2</param-value> |
||
20 | </init-param> |
||
21 | <init-param> |
||
22 | <param-name>detail</param-name> |
||
23 | <param-value>2</param-value> |
||
24 | </init-param> |
||
25 | <load-on-startup>2</load-on-startup> |
||
26 | </servlet> |
||
27 | |||
28 | |||
29 | <servlet> |
||
30 | <servlet-name>init</servlet-name> |
||
31 | <servlet-class>ak.photoalbum.webapp.InitServlet</servlet-class> |
||
32 | <init-param> |
||
1252 | dev | 33 | <param-name>config</param-name> |
34 | <param-value>WEB-INF/conf/photos.xml</param-value> |
||
936 | dev | 35 | </init-param> |
36 | <load-on-startup>1</load-on-startup> |
||
37 | </servlet> |
||
38 | |||
39 | <!-- Standard Action Servlet Mapping --> |
||
40 | <servlet-mapping> |
||
41 | <servlet-name>action</servlet-name> |
||
42 | <url-pattern>*.do</url-pattern> |
||
43 | </servlet-mapping> |
||
44 | |||
45 | |||
46 | <!-- The Usual Welcome File List --> |
||
47 | <welcome-file-list> |
||
48 | <welcome-file>index.do</welcome-file> |
||
49 | </welcome-file-list> |
||
50 | |||
51 | |||
52 | <!-- Struts Tag Library Descriptors --> |
||
53 | <taglib> |
||
54 | <taglib-uri>/tags/struts-bean</taglib-uri> |
||
55 | <taglib-location>/WEB-INF/struts-bean.tld</taglib-location> |
||
56 | </taglib> |
||
57 | |||
58 | <taglib> |
||
59 | <taglib-uri>/tags/struts-html</taglib-uri> |
||
60 | <taglib-location>/WEB-INF/struts-html.tld</taglib-location> |
||
61 | </taglib> |
||
62 | |||
63 | <taglib> |
||
64 | <taglib-uri>/tags/struts-logic</taglib-uri> |
||
65 | <taglib-location>/WEB-INF/struts-logic.tld</taglib-location> |
||
66 | </taglib> |
||
67 | |||
68 | <taglib> |
||
69 | <taglib-uri>/tags/struts-nested</taglib-uri> |
||
70 | <taglib-location>/WEB-INF/struts-nested.tld</taglib-location> |
||
71 | </taglib> |
||
72 | |||
73 | <taglib> |
||
74 | <taglib-uri>/tags/struts-tiles</taglib-uri> |
||
75 | <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location> |
||
76 | </taglib> |
||
77 | |||
78 | </web-app> |