xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <display-name>mso-catalog-db</display-name> |
| 4 | |
| 5 | <context-param> |
| 6 | <param-name>log.configuration</param-name> |
| 7 | <param-value>logback.catalog.xml</param-value> |
| 8 | </context-param> |
| 9 | <context-param> |
| 10 | <param-name>mso.configuration</param-name> |
| 11 | <param-value>MSO_PROP_TOPOLOGY=topology.properties</param-value> |
| 12 | </context-param> |
| 13 | <context-param> |
| 14 | <param-name>resteasy.resources</param-name> |
| 15 | <param-value> |
| 16 | org.openecomp.mso.adapters.catalogdb.CatalogDbAdapterRest |
| 17 | </param-value> |
| 18 | </context-param> |
| 19 | <servlet> |
| 20 | <servlet-name>Resteasy</servlet-name> |
| 21 | <servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher</servlet-class> |
| 22 | </servlet> |
| 23 | <servlet-mapping> |
| 24 | <servlet-name>Resteasy</servlet-name> |
| 25 | <url-pattern>/*</url-pattern> |
| 26 | </servlet-mapping> |
| 27 | |
| 28 | <filter> |
| 29 | <filter-name>LogFilter</filter-name> |
| 30 | <filter-class>org.openecomp.mso.logger.LogFilter</filter-class> |
| 31 | </filter> |
| 32 | <filter-mapping> |
| 33 | <filter-name>LogFilter</filter-name> |
| 34 | <url-pattern>/*</url-pattern> |
| 35 | </filter-mapping> |
| 36 | <context-param> |
| 37 | <param-name>resteasy.scan</param-name> |
| 38 | <param-value>true</param-value> |
| 39 | </context-param> |
| 40 | <context-param> |
| 41 | <param-name>resteasy.scan.providers</param-name> |
| 42 | <param-value>true</param-value> |
| 43 | </context-param> |
| 44 | <context-param> |
| 45 | <param-name>resteasy.scan.resources</param-name> |
| 46 | <param-value>true</param-value> |
| 47 | </context-param> |
| 48 | |
| 49 | </web-app> |