We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fd12ed commit 0743784Copy full SHA for 0743784
1 file changed
web/servlet/welcomefilelist/web.xml
@@ -0,0 +1,21 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+
3
+<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
4
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
6
+ http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
7
+ version="3.1">
8
9
+ <welcome-file-list>
10
+ <!-- order matters -->
11
+ <welcome-file>default.html</welcome-file>
12
+ <welcome-file>index.html</welcome-file>
13
+ <welcome-file>index.jsp</welcome-file>
14
+ </welcome-file-list>
15
16
+ <session-config>
17
+ <session-timeout>
18
+ 30
19
+ </session-timeout>
20
+ </session-config>
21
+</web-app>
0 commit comments