概述
<?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/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!--开启MVC注解 -->
<mvc:annotation-driven/>
<!--放行静态资源 css js html -->
<mvc:default-servlet-handler/>
<!--xml形式的拦截器的配置 -->
<!-- <mvc:interceptors></mvc:interceptors> -->
<!--配置视图解析器 内部资源视图解析器
配置前缀和后缀
-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"></property>
</bean>
<!--配置文件上传视图解析器
要求: id必须为multipartResolver
-->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!--设定最大的上传量10M -->
<property name="maxUploadSize" value="10485760"/>
</bean>
<!--定义拦截器
Content Model : (mapping+, exclude-mapping*, (bean | ref))
/* 表示只拦截一级目录
/** 表示拦截全部访问路径
-->
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/cart/**"/>
<bean class="com.jt.web.intercept.UserInterceptor"/>
</mvc:interceptor>
</mvc:interceptors>
</beans>
最后
以上就是现代飞机为你收集整理的mvc.xml常用基本配置的全部内容,希望文章能够帮你解决mvc.xml常用基本配置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复