编写springmvc.xml文件模板
时间: 2023-07-12 15:22:17 浏览: 96
以下是一个简单的 springmvc.xml 文件模板,你可以根据自己的需求进行修改:
```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.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- 开启 Spring 的注解功能 -->
<context:annotation-config/>
<context:component-scan base-package="com.example"/>
<!-- 开启 Spring MVC 注解驱动 -->
<mvc:annotation-driven/>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- 配置静态资源路径 -->
<mvc:resources mapping="/resources/**" location="/resources/"/>
<!-- 配置拦截器 -->
<mvc:interceptors>
<bean class="com.example.MyInterceptor"/>
</mvc:interceptors>
<!-- 配置文件上传 -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="10000000"/>
</bean>
</beans>
```
其中,`<context:component-scan>` 标签用于扫描指定包下的组件,`<mvc:annotation-driven>` 标签用于开启 Spring MVC 的注解驱动,`<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">` 标签用于配置视图解析器,`<mvc:resources>` 标签用于配置静态资源路径,`<mvc:interceptors>` 标签用于配置拦截器,`<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">` 标签用于配置文件上传。
阅读全文