赞
踩
大家都知道这两个注解可以实现bean的注入
@Autowired 这个是spring的注解 org.springframework.beans.factory.annotation.Autowired
@Resource 这属于java自带的注解 javax.annotation.Resource
需要按名字注入的话可以跟@Qualifier搭配使用
对比一下
对比项 | @Autowire | @Resource |
---|---|---|
注解来源 | Spring注解 | JDK注解(JSR-250标准注解,属于J2EE) |
装配方式 | 优先按类型 | 优先按名称 |
属性 | required | name、type |
作用范围 | 字段、setter方法、构造器 | 字段、setter方法 |
推荐使用@Resource
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。