60 lines
2.5 KiB
XML
60 lines
2.5 KiB
XML
<?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:context="http://www.springframework.org/schema/context"
|
|
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/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
|
|
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">
|
|
|
|
<!-- 开启注解包扫描-->
|
|
<context:component-scan base-package="com.heibaiying.*"/>
|
|
|
|
<!--使用默认的Servlet来响应静态文件 详见README.md -->
|
|
<mvc:default-servlet-handler/>
|
|
|
|
<!-- 开启注解驱动 并制定全局日期转换 详见 README.md -->
|
|
<mvc:annotation-driven conversion-service="formattingConversionService"/>
|
|
|
|
<!-- 配置视图解析器 -->
|
|
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
|
|
id="internalResourceViewResolver">
|
|
<!-- 前缀 -->
|
|
<property name="prefix" value="/WEB-INF/jsp/"/>
|
|
<!-- 后缀 -->
|
|
<property name="suffix" value=".jsp"/>
|
|
</bean>
|
|
|
|
<!--配置拦截器-->
|
|
<mvc:interceptors>
|
|
<mvc:interceptor>
|
|
<mvc:mapping path="/mvc/**"/>
|
|
<mvc:exclude-mapping path="/mvc/login"/>
|
|
<bean class="com.heibaiying.interceptors.MyFirstInterceptor"/>
|
|
</mvc:interceptor>
|
|
<mvc:interceptor>
|
|
<mvc:mapping path="/mvc/**"/>
|
|
<bean class="com.heibaiying.interceptors.MySecondInterceptor"/>
|
|
</mvc:interceptor>
|
|
</mvc:interceptors>
|
|
|
|
<!--配置全局异常处理器-->
|
|
<bean class="com.heibaiying.exception.NoAuthExceptionResolver"/>
|
|
|
|
<!-- 全局日期格式转换 -->
|
|
<bean id="formattingConversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
|
|
<property name="converters">
|
|
<list>
|
|
<bean class="com.heibaiying.convert.CustomDateConverter"/>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<!--配置文件上传-->
|
|
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
|
|
<property name="maxUploadSize" value="102400000"/>
|
|
<property name="maxUploadSizePerFile" value="10240000"/>
|
|
<property name="defaultEncoding" value="utf-8"/>
|
|
</bean>
|
|
|
|
</beans> |