org.openl.tablets.deploy.webapps.webservicesdeployer.WEB-INF.web.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> <display-name>Openl Web Service</display-name> <servlet> <servlet-name>WSServlet</servlet-name> <servlet-class>org.openl.rules.ruleservice.servlet.WSServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>WSServlet</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> <context-param> <description> Location of the XML file that defines the root application context Applied by ContextLoaderListener. </description> <param-name>contextConfigLocation</param-name> <param-value>openl-ruleservice-beans.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> </web-app>