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">
|
2012-03-10 22:57:15 +00:00
|
|
|
<display-name>bunti_server</display-name>
|
2012-03-01 23:51:12 +00:00
|
|
|
<description>CTDO bunti control Server</description>
|
|
|
|
|
2012-03-10 22:57:15 +00:00
|
|
|
<context-param>
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
|
<param-value>classpath:META-INF/spring/root-context.xml</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<listener>
|
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
|
</listener>
|
|
|
|
|
2012-03-09 22:37:26 +00:00
|
|
|
<filter>
|
|
|
|
<filter-name>characterEncodingFilter</filter-name>
|
|
|
|
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
|
|
|
|
<init-param>
|
|
|
|
<param-name>encoding</param-name>
|
|
|
|
<param-value>UTF-8</param-value>
|
|
|
|
</init-param>
|
|
|
|
<init-param>
|
|
|
|
<param-name>forceEncoding</param-name>
|
|
|
|
<param-value>true</param-value>
|
|
|
|
</init-param>
|
|
|
|
</filter>
|
2012-03-07 18:21:53 +00:00
|
|
|
|
2012-03-09 22:37:26 +00:00
|
|
|
<filter-mapping>
|
|
|
|
<filter-name>characterEncodingFilter</filter-name>
|
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
</filter-mapping>
|
2012-03-07 18:21:53 +00:00
|
|
|
|
2012-03-10 20:38:05 +00:00
|
|
|
<servlet>
|
|
|
|
<servlet-name>appServlet</servlet-name>
|
2012-03-11 23:18:20 +00:00
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
2012-03-10 20:38:05 +00:00
|
|
|
<init-param>
|
|
|
|
<param-name>contextConfigLocation</param-name>
|
2012-03-10 22:57:15 +00:00
|
|
|
<param-value>classpath:/META-INF/spring/mvc/servlet-context.xml</param-value>
|
2012-03-10 20:38:05 +00:00
|
|
|
</init-param>
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>appServlet</servlet-name>
|
|
|
|
<url-pattern>/</url-pattern>
|
|
|
|
</servlet-mapping>
|
2012-03-01 23:51:12 +00:00
|
|
|
|
2012-02-25 15:55:47 +00:00
|
|
|
</web-app>
|