-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.xml
More file actions
22 lines (21 loc) · 926 Bytes
/
web.xml
File metadata and controls
22 lines (21 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--XML file used to specify Jersey framework servlet for our application.-->
<?xml version = "1.0" encoding = "UTF-8"?>
<web-app xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns = "http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id = "WebApp_ID" version = "3.0">
<display-name>Router_database</display-name>
<servlet>
<servlet-name>JerseyRESTful</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.cloud_quotient</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>JerseyRESTful</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>