首页 > 代码库 > spring

spring

<?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>filterTest</display-name>  <welcome-file-list>    <welcome-file>index.html</welcome-file>    <welcome-file>index.htm</welcome-file>    <welcome-file>index.jsp</welcome-file>    <welcome-file>default.html</welcome-file>    <welcome-file>default.htm</welcome-file>    <welcome-file>default.jsp</welcome-file>  </welcome-file-list>       <listener>  	<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  </listener>    <servlet>  	<servlet-name>viewSpace</servlet-name>  	<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  	<init-param>			<param-name>contextConfigLocation</param-name>			<param-value>classpath*:applicationContext.xml</param-value>	</init-param>  </servlet>    <servlet-mapping>  	<servlet-name>viewSpace</servlet-name>  	<url-pattern>*.form</url-pattern>  </servlet-mapping>    <filter>  	<filter-name>encoding</filter-name>  	<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  	<init-param>  		<param-name>encoding</param-name>  		<param-value>utf8</param-value>  	</init-param>  </filter>    <filter-mapping>  	<filter-name>encoding</filter-name>  	<url-pattern>*</url-pattern>  </filter-mapping>  </web-app>

  

spring