Skip to content

Commit d003f15

Browse files
committed
Added web.xml in the MVCPracticeAdvanced section of a small course on Java EE
1 parent b65c31c commit d003f15

File tree

1 file changed

+12
-0
lines changed
  • MVCPracticeAdvanced/web/WEB-INF

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
5+
version="4.0">
6+
7+
<error-page>
8+
<exception-type>java.lang.Throwable</exception-type>
9+
<location>/WEB-INF/jsp/500.jsp</location>
10+
</error-page>
11+
12+
</web-app>

0 commit comments

Comments
 (0)