2012-02-25 15:55:47 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-03-01 23:51:12 +00:00
|
|
|
<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>bunti_server</display-name>
|
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>index.jsp</welcome-file>
|
|
|
|
</welcome-file-list>
|
|
|
|
|
|
|
|
<description>CTDO bunti control Server</description>
|
|
|
|
|
2012-03-07 18:21:53 +00:00
|
|
|
<listener>
|
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
</listener>
|
|
|
|
|
|
|
|
<context-param>
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
|
<param-value>classpath:applicationContext.xml</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<servlet>
|
|
|
|
<servlet-name>dispatcher</servlet-name>
|
|
|
|
<servlet-class>
|
|
|
|
org.springframework.web.servlet.DispatcherServlet
|
|
|
|
</servlet-class>
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>dispatcher</servlet-name>
|
|
|
|
<url-pattern>/</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
<session-config>
|
|
|
|
<session-timeout>25</session-timeout>
|
|
|
|
</session-config>
|
|
|
|
|
2012-02-25 15:55:47 +00:00
|
|
|
</web-app>
|