-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.xml
More file actions
55 lines (38 loc) · 1.28 KB
/
web.xml
File metadata and controls
55 lines (38 loc) · 1.28 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?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>GroceryServlet2</display-name>
<welcome-file-list>
<welcome-file>index1.html</welcome-file>
</welcome-file-list>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.jsp</location>
</error-page>
<servlet>
<servlet-name>DemoServlet</servlet-name>
<servlet-class>MainServlet.DemoServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DemoServlet</servlet-name>
<url-pattern>/home1</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>DemoServlet2</servlet-name>
<servlet-class>MainServlet.DemoServlet2</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DemoServlet2</servlet-name>
<url-pattern>/viewgoods</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>DemoServlet3</servlet-name>
<servlet-class>MainServlet.DemoServlet3</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DemoServlet3</servlet-name>
<url-pattern>/viewsupplier</url-pattern>
</servlet-mapping>
</web-app>