1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
   | <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 	xmlns="http://xmlns.jcp.org/xml/ns/javaee" 	xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" 	id="WebApp_ID" version="3.1"> 	 	 	<display-name>testweb</display-name> 	 	 	<description>this is a test web project</description> 	 	 	<welcome-file-list> 		<welcome-file>index.html</welcome-file> 	</welcome-file-list> 	 	 	<error-page> 		<error-code>404</error-code> 		<location>/404.html</location> 	</error-page> 	<error-page> 		<error-code>500</error-code> 		<location>/500.html</location> 	</error-page> 	 	 	<session-config> 		<session-timeout>360000</session-timeout> 	</session-config> 	 	 	 	 	 	 </web-app>
 
   |