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 @Required 注解应用于 bean 属性的 setter 方法。
2 @Autowired @Autowired 注解可以应用到 bean 属性的 setter 方法,非 setter 方法,构造函数和属性。
3 @Qualifier 通过指定确切的将被连线的 bean,@Autowired 和 @Qualifier 注解可以用来删除混乱。
4 JSR-250 Annotations Spring 支持 JSR-250 的基础的注解,其中包括了 @Resource,@PostConstruct 和 @PreDestroy 注解。

查看笔记

扫码一下
查看教程更方便