Spring - 基于注解的配置
从 Spring 2.5 开始,可以使用 annotations 配置依赖注入。 因此,您可以通过在相关类、方法或字段声明上使用注解,将 bean 配置移动到组件类本身,而不是使用 XML 来描述 bean 连接。
注解注入在 XML 注入之前执行。 因此,对于通过这两种方法连接的属性,后一种配置将覆盖前者。
默认情况下,Spring 容器中未开启注解连接。 因此,在我们可以使用基于注解的连接之前,我们需要在 Spring 配置文件中启用它。 因此,如果您想在 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 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:annotation-config/> <!-- bean definitions go here --> </beans>
配置 <context:annotation-config/> 后,您可以开始注解代码以指示 Spring 应该自动将值连接到属性、方法和构造函数中。 让我们看一些重要的注解来了解它们是如何工作的 −
序号 | 注解 & 描述 |
---|---|
1 | @Required
@Required 注解适用于 bean 属性设置器方法。 |
2 | @Autowired
@Autowired 注解可以应用于 bean 属性设置方法、非设置方法、构造函数和属性。 |
3 | @Qualifier
@Qualifier 注解和@Autowired 可用于通过指定将被连接的确切bean 来消除混淆。 |
4 | JSR-250 注解
Spring 支持基于 JSR-250 的注解,其中包括 @Resource、@PostConstruct 和 @PreDestroy 注解。 |