|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
|
|
|
<display-name>SSMProjectPreview</display-name>
|
|
|
<welcome-file-list>
|
|
|
<welcome-file>admin.action</welcome-file>
|
|
|
</welcome-file-list>
|
|
|
|
|
|
<!-- 1.Spring配置文件:让Spring在web项目中起作用,让Spring IoC容器跟随项目一起启动 -->
|
|
|
<!-- needed for ContextLoaderListener -->
|
|
|
<context-param>
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
<!-- 指定Spring配置文件的地址 -->
|
|
|
<param-value>classpath:applicationContext.xml</param-value>
|
|
|
</context-param>
|
|
|
|
|
|
<!-- Bootstraps the root web application context before servlet initialization -->
|
|
|
<listener>
|
|
|
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
|
|
|
</listener>
|
|
|
|
|
|
<!-- 2.SpringMVC配置文件:前端控制器 -->
|
|
|
<!-- The front controller of this Spring Web application, responsible for handling all application requests -->
|
|
|
<servlet>
|
|
|
<servlet-name>springDispatcherServlet</servlet-name>
|
|
|
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
|
|
|
<!-- SpringMVC要想启动得需要他的配置文件 -->
|
|
|
<init-param>
|
|
|
<param-name>contextConfigLocation</param-name>
|
|
|
<param-value>classpath:springmvc.xml</param-value>
|
|
|
</init-param>
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
</servlet>
|
|
|
|
|
|
<!-- Map all requests to the DispatcherServlet for handling -->
|
|
|
<servlet-mapping>
|
|
|
<servlet-name>springDispatcherServlet</servlet-name>
|
|
|
<url-pattern>/</url-pattern><!-- 拦截所有请求 -->
|
|
|
</servlet-mapping>
|
|
|
|
|
|
<!-- 解决中文乱码问题 -->
|
|
|
<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>
|
|
|
</filter>
|
|
|
<filter-mapping>
|
|
|
<filter-name>CharacterEncodingFilter</filter-name>
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
</filter-mapping>
|
|
|
|
|
|
</web-app> |