Spring 简明教程

Spring - Annotation Based Configuration

从 Spring 2.5 开始,可以使用 annotations 配置依赖注入成为可能。因此,与其使用 XML 来描述 Bean 装配,你可以使用对相关类、方法或字段声明的注释将 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 应自动将值连接到属性、方法和构造函数中。让我们来看一些重要的注释以了解它们如何工作:-

Sr.No.

Annotation & Description

1

@Required @Required 注释适用于 Bean 属性设置器方法。

2

@Autowired @Autowired 注释可以适用于 Bean 属性设置器方法、非设置器方法、构造函数和属性。

3

@Qualifier @Qualifier 注释连同 @Autowired 可用于消除混乱,方法是指定将连接哪个确切的 Bean。

4

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