aboutsummaryrefslogtreecommitdiffstats
path: root/reference/logging-demo/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
authorMichael O'Brien <frank.obrien@amdocs.com>2018-01-14 19:03:01 -0500
committerMichael O'Brien <frank.obrien@amdocs.com>2018-01-14 19:04:02 -0500
commit84c036b3bc6d8313b86317d752b92c417bd89d7f (patch)
treeb47703ce2be47c14d3fd91598412f00785beb0cc /reference/logging-demo/src/main/webapp/WEB-INF/web.xml
parentf8b1ef78741ae64adf79f677296a5c33e7d07ae4 (diff)
initial logging project structure
Issue-ID: LOG-120 Change-Id: If96346fa4f35b81ec01aacc087f96875011e5f82 Signed-off-by: Michael O'Brien <frank.obrien@amdocs.com>
Diffstat (limited to 'reference/logging-demo/src/main/webapp/WEB-INF/web.xml')
-rw-r--r--reference/logging-demo/src/main/webapp/WEB-INF/web.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/reference/logging-demo/src/main/webapp/WEB-INF/web.xml b/reference/logging-demo/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 0000000..dd62a9c
--- /dev/null
+++ b/reference/logging-demo/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,41 @@
+<?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">
+ <session-config>
+ <session-timeout>30</session-timeout>
+ </session-config>
+ <welcome-file-list>
+ <welcome-file>index.jsp</welcome-file>
+ </welcome-file-list>
+ <!-- https://jersey.java.net/apidocs/2.0/jersey/org/glassfish/jersey/servlet/ServletContainer.html -->
+ <servlet>
+ <description>JAX-RS Tools Generated - Do not modify</description>
+ <servlet-name>JAX-RS Servlet</servlet-name>
+ <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
+ <init-param>
+ <param-name>javax.ws.rs.Application</param-name>
+ <param-value>org.onap.logging.RestApplication</param-value>
+ </init-param>
+ <init-param>
+ <param-name>jersey.config.server.provider.packages</param-name>
+ <param-value>org.onap.logging</param-value>
+ </init-param>
+ <load-on-startup>1</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>JAX-RS Servlet</servlet-name>
+ <url-pattern>/rest/*</url-pattern>
+ </servlet-mapping>
+
+ <context-param>
+ <param-name>contextConfigLocation</param-name>
+ <param-value>/WEB-INF/spring.xml</param-value>
+ </context-param>
+
+ <listener>
+ <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
+ </listener>
+
+ <listener>
+ <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
+ </listener>
+</web-app>