概述
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
<!-- 配置controller扫描包 springnvc前端Contorller的扫描注解 -->
<context:component-scan base-package="com.lishan.project_ssm01"/>
<!--配置注解驱动
,相当于同时使用了最新的处理器映射器 和处理器适配器 对 json数据的响应提供支持-->
<mvc:annotation-driven
conversion-service="conversionService" />
<!-- 配置日期转换器 -->
<bean id="conversionservice" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
<property name="converters">
<set>
<bean class="com.lishan.project_ssm01.util.DateConverterUtil"/>
</set>
</property>
</bean>
<!-- 配置静态文件放行 -->
<mvc:default-servlet-handler />
<!-- 文件上传的相关配置操作 -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 文件最大的上传允许大小 -->
<property name="maxUploadSize">
<value>5242880</value>
</property>
</bean>
<!-- 注册拦截器 -->
<mvc:interceptors>
<mvc:interceptor>
<!-- 指定需要拦截的路径 -->
<mvc:mapping path="/**"/>
<!-- 指定不需要拦截的路径 -->
<mvc:exclude-mapping path="/user/login*"/>
<!-- 实例化自定义拦截器类 -->
<bean class="com.sxt.inteceptor.LoginInterceptor"></bean>
</mvc:interceptor>
</mvc:interceptors>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/page/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
最后
以上就是眼睛大音响为你收集整理的springmvc.xml的常用配置的全部内容,希望文章能够帮你解决springmvc.xml的常用配置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复