Spring MVC 配置样例

spring mvc 配置文件记录

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">
        <!-- 配置视图解析器 -->
        <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/"></property>
        <property name="suffix" value=".jsp"></property>
        </bean>
        <!-- 扫描控制器包  -->
        <context:component-scan base-package="com.geng.controller"></context:component-scan>
        
        <!-- 开启mvc 注解,注册HandlerMappering,HandlerAdapter -->
        <mvc:annotation-driven conversion-service="conversionService"></mvc:annotation-driven>
         <!--  配置一个string 转换date 的类型转换器-->
         <bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
          <property name="converters">
            <set>
               <bean class="com.geng.util.String2DateConverter"></bean>
            </set>
          </property>
        </bean>
        
        <!-- 声明式异常处理 -->
        <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
         <property name="defaultErrorView" value="error"></property>
         <property name="exceptionMappings">
            <props>
              <prop key="java.lang.Excepiton">error</prop>
            </props>
         </property>
        </bean>
        
        <!--配置拦截器  -->
       <mvc:interceptors>
           <mvc:interceptor>
               <mvc:mapping path="/*"/>
               <bean class="com.geng.controller.FirstInterceptor"></bean>
           </mvc:interceptor>
       </mvc:interceptors>
       
       <!-- 配置静态资源 -->
     <!--   <mvc:resources mapping="/js/**" location="/js/"></mvc:resources>
	 <mvc:resources mapping="/css/**" location="/css/"></mvc:resources>
	 <mvc:resources mapping="/html/**" location="/html/"></mvc:resources>
	 <mvc:resources mapping="/img/**" location="/img/"></mvc:resources> -->
	   <!-- 控制器找不到的请求,找静态资源  -->
	 <mvc:default-servlet-handler/>
        </beans>

此文件名称为SpringMvc.xml 需要在项目的web.xml 文件中配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<!-- 注册一个springMvc的前端控制器 -->

<servlet>
   <servlet-name>springMVC</servlet-name>
   <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
   <!-- 前端控制器需要一个初始化参数contextConfigLocation 
        配置一个资源路径,就是springmvc的配置文件  -->
   <init-param>
     <param-name>contextConfigLocation</param-name>
     <param-value>classpath:springMvc.xml</param-value>
   </init-param>
</servlet>
<!-- 配置前端控制器处理的请求  -->
<servlet-mapping>
  <servlet-name>springMVC</servlet-name>
  <url-pattern>/</url-pattern>
</servlet-mapping>
<!-- 配置一个设置字符集的过滤器 -->
<filter>
  <filter-name>CharacterEncodingFilter</filter-name>
  <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  <!-- 这个CharacterEncodingFilter有一个属性encoding 用初始化参数的方式设置 -->
  <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>

<!--  此过滤器用于实现吧post 请求转换成指定的请求,比如put ,delete 
 需要在form传递参数时传递一个_method 参数   vlaue 值为PUT/DELETE
   -->
<filter>
  <filter-name>HiddenHttpMethodFilter</filter-name>
  <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
  <filter-name>HiddenHttpMethodFilter</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>


<!--  -->
 <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <!--  配置需要加载的配置文件,比如dao,service等的xml 文件-->
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:application-*.xml</param-value>
  </context-param>
  <error-page>
    <error-code>404</error-code>
    <location>/img/404.jpg</location>
  </error-page>
 
</web-app>

猜你喜欢

转载自blog.csdn.net/qq_32417777/article/details/83152923