Skip to content

Commit 0743784

Browse files
authored
Create web.xml
1 parent 4fd12ed commit 0743784

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)