60 lines
2.0 KiB
XML
60 lines
2.0 KiB
XML
<?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_2_5.xsd" version="2.5">
|
|
<context-param>
|
|
<param-name>contextConfigLocation</param-name>
|
|
<param-value>classpath*:config/spring/context-*.xml</param-value>
|
|
</context-param>
|
|
<listener>
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
</listener>
|
|
<servlet>
|
|
<servlet-name>action</servlet-name>
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
<init-param>
|
|
<param-name>contextConfigLocation</param-name>
|
|
<param-value>/WEB-INF/config/*-servlet.xml</param-value>
|
|
</init-param>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
<servlet-mapping>
|
|
<servlet-name>action</servlet-name>
|
|
<url-pattern>/</url-pattern>
|
|
</servlet-mapping>
|
|
<filter>
|
|
<filter-name>encodingFilter</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>
|
|
</filter>
|
|
<filter-mapping>
|
|
<filter-name>encodingFilter</filter-name>
|
|
<url-pattern>/</url-pattern>
|
|
</filter-mapping>
|
|
<welcome-file-list>
|
|
<welcome-file>/index.html</welcome-file>
|
|
</welcome-file-list>
|
|
<error-page>
|
|
<error-code>400</error-code>
|
|
<location>/error/default.html</location>
|
|
</error-page>
|
|
<error-page>
|
|
<error-code>404</error-code>
|
|
<location>/error/404.html</location>
|
|
</error-page>
|
|
<error-page>
|
|
<error-code>500</error-code>
|
|
<location>/error/default.html</location>
|
|
</error-page>
|
|
<error-page>
|
|
<error-code>503</error-code>
|
|
<location>/error/default.html</location>
|
|
</error-page>
|
|
<error-page>
|
|
<error-code>402</error-code>
|
|
<location>/error/default.html</location>
|
|
</error-page>
|
|
</web-app> |