spring 启用注解配置
时间: 2023-09-02 15:08:39 浏览: 96
要启用注解配置,需要在Spring配置文件中添加以下内容:
```xml
<context:annotation-config/>
```
此外,还可以使用以下标签之一来启用注解配置:
- `<context:component-scan>`:自动扫描指定包及其子包下的类,将带有相关注解的类注册为Spring组件。
- `<mvc:annotation-driven>`:启用Spring MVC注解,如`@Controller`、`@RequestMapping`等。
例如,以下是一个完整的Spring配置文件,启用了注解配置和Spring MVC注解:
```xml
<beans xmlns="http://www.springframework.org/schema/beans"
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"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<context:annotation-config/>
<context:component-scan base-package="com.example"/>
<mvc:annotation-driven/>
<!--其他配置-->
</beans>
```
阅读全文