Spring - 基于注解的配置


从 Spring 2.5 开始,可以使用注释来配置依赖注入。因此,您可以通过在相关类、方法或字段声明上使用注释,将 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 注释适用于 bean 属性 setter 方法。

2 @Autowired

@Autowired 注解可以应用于 bean 属性 setter 方法、非 setter 方法、构造函数和属性。

3 @预选赛

@Qualifier 注释和 @Autowired 可用于通过指定将连接哪个确切的 bean 来消除混乱。

4 JSR-250 注释

Spring 支持基于 JSR-250 的注释,其中包括 @Resource、@PostConstruct 和 @PreDestroy 注释。