resource与autowired的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了resource与autowired的区别相关的知识,希望对你有一定的参考价值。
天王盖地虎,宝塔镇河妖,春雷一声吼,码农满街走!
在最近的工作过程中,经常用到@Resource与@Autowired,今天来探究一下这两个注解的具体区别在哪儿。
首先每个人都知道,@Resource和@Autowired都是做bean的注入使用的,不同的是@Autowired是Spring自带的注解,
而@Autowired是J2EE提供的,并且使用@Autowired的时候对象必须存在
@Autowired private WheelDao wheelDao;
上面是@Autowired 的用法,而@Resource的用法则如下
@Resource(name=“wheelDao”) private WheelDao wheelDao;
Spring会将@Resource注解的name属性解析为bean的名字
在使用Spring框架的时候,使用@Resource注解可以降低代码与Spring之间的耦合
以上是关于resource与autowired的区别的主要内容,如果未能解决你的问题,请参考以下文章