为了账号安全,请及时绑定邮箱和手机立即绑定

Spring @Autowired 注释

标签:
Spring

使用 Spring 开发时,进行配置主要有两种方式,一是 xml 的方式,二是 java config 的方式。Spring 技术自身也在不断的发展和改变,从当前 Springboot 的火热程度来看,java config 的应用是越来越广泛了,在使用 java config 的过程当中,我们不可避免的会有各种各样的注释打交道,其中,我们使用最多的注释应该就是 @Autowired 注释了。这个注释的功能就是为我们注入一个定义好的 bean。

@Autowired 注释的作用到底是什么?

@Autowired 这个注释我们经常在使用,现在,我想问的是,它的作用到底是什么呢?

首先,我们从所属范围来看,事实上这个注释是属于 Spring 的容器配置的一个注释,与它同属容器配置的注释还有:@Required,@Primary, @Qualifier 等等。因此 @Autowired 注释是一个用于容器 ( container ) 配置的注释。

其次,我们可以直接从字面意思来看,@autowired 注释来源于英文单词 autowire,这个单词的意思是自动装配的意思。自动装配又是什么意思?这个词语本来的意思是指的一些工业上的用机器代替人口,自动将一些需要完成的组装任务,或者别的一些任务完成。而在 Spring 的世界当中,自动装配指的就是使用将 Spring 容器中的 bean 自动的和我们需要这个 bean 的类组装在一起。

@Autowired 注释用法

在分析这个注释的实现原理之前,我们不妨先来回顾一下 @Autowired 注释的用法。

将 @Autowired 注释应用于构造函数,如以下示例所示

public class MovieRecommender {       private final CustomerPreferenceDao customerPreferenceDao;       @Autowired     public MovieRecommender(CustomerPreferenceDao customerPreferenceDao) {         this.customerPreferenceDao = customerPreferenceDao;     }       // ... }

将 @Autowired 注释应用于 setter 方法

public class SimpleMovieLister {       private MovieFinder movieFinder;       @Autowired     public void setMovieFinder(MovieFinder movieFinder) {         this.movieFinder = movieFinder;     }       // ... }

将 @Autowired 注释应用于具有任意名称和多个参数的方法

public class MovieRecommender {       private MovieCatalog movieCatalog;       private CustomerPreferenceDao customerPreferenceDao;       @Autowired     public void prepare(MovieCatalog movieCatalog,             CustomerPreferenceDao customerPreferenceDao) {         this.movieCatalog = movieCatalog;         this.customerPreferenceDao = customerPreferenceDao;     }       // ... }

您也可以将 @Autowired 注释应用于字段,或者将其与构造函数混合,如以下示例所示

public class MovieRecommender {       private final CustomerPreferenceDao customerPreferenceDao;       @Autowired     private MovieCatalog movieCatalog;       @Autowired     public MovieRecommender(CustomerPreferenceDao customerPreferenceDao) {         this.customerPreferenceDao = customerPreferenceDao;     }       // ... }


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消