SpringMVC怎么创建xml
时间: 2023-10-13 20:09:17 浏览: 100
SpringMVC中的配置文件主要是通过XML文件来进行配置的。下面是创建SpringMVC的XML配置文件的步骤:
1. 创建一个名为"spring-servlet.xml"的文件,命名规则可以自定义,但是一般情况下按照这个规则命名比较好。
2. 在该XML文件中添加根元素<beans>。
3. 在<beans>元素中添加<bean>元素,该元素用于定义SpringMVC中的各种组件,如控制器、视图解析器、拦截器等。
4. 在<bean>元素中添加各种属性,如id、class、scope等。
5. 在<bean>元素中添加各种子元素,如<property>、<constructor-arg>等,用于设置该组件的属性值。
6. 在<beans>元素中添加<import>元素,用于引入其他的XML配置文件。
例如,下面是一个简单的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-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<!-- 控制器配置 -->
<bean id="helloController" class="com.example.controller.HelloController"/>
<!-- 视图解析器配置 -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- 静态资源访问配置 -->
<mvc:resources mapping="/static/**" location="/static/"/>
<!-- 拦截器配置 -->
<mvc:interceptors>
<bean id="loginInterceptor" class="com.example.interceptor.LoginInterceptor"/>
</mvc:interceptors>
<!-- 包扫描配置 -->
<context:component-scan base-package="com.example"/>
</beans>
```
该配置文件定义了一个HelloController控制器、一个InternalResourceViewResolver视图解析器、一个静态资源访问配置以及一个LoginInterceptor拦截器。同时,还配置了包扫描的基础包为com.example。
阅读全文