基于注解的容器配置
Spring 为基于注解的配置提供了全面的支持,通过在相关类、方法或字段声明上使用注解,对组件类本身的元数据进行操作。如 示例:AutowiredAnnotationBeanPostProcessor
中所述,Spring 使用 BeanPostProcessors
与注解结合,使核心 IOC 容器感知特定注解。
例如,@Autowired
注解提供了与 自动装配协作者 中描述的功能相同的功能,但具有更细粒度的控制和更广泛的适用性。此外,Spring 还支持 JSR-250 注解,例如 @PostConstruct
和 @PreDestroy
,以及对 JSR-330(Java 依赖注入)注解的支持,这些注解包含在 jakarta.inject
包中,例如 @Inject
和 @Named
。有关这些注解的详细信息,请参阅 相关部分。
注解注入在外部属性注入之前执行。因此,外部配置(例如 XML 指定的 bean 属性)在通过混合方法进行连接时,实际上会覆盖属性的注解。 |
从技术上讲,您可以将后处理器注册为单独的 Bean 定义,但它们已经在 AnnotationConfigApplicationContext
中隐式注册了。
在基于 XML 的 Spring 设置中,您可以包含以下配置标签以启用与基于注解的配置的混合和匹配
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
</beans>
<context:annotation-config/>
元素隐式注册以下后处理器
|