spring的autowired与resource

该博客详细介绍了在Spring框架中,@Autowired和@Resource注解的差异。@Autowired默认按类型注入,找不到匹配时尝试按名称注入,而@Resource默认按名称注入,找不到时才按类型注入。通过代码示例展示了不同情况下两者的注入行为,强调了理解这两个注解的工作原理对于避免注入错误的重要性。
摘要由CSDN通过智能技术生成

经过工作中的开发经验可以用一句话进行总结其区别与联系:

@autowired与@resource就只是默认的装配类型不一致,@autowired默认byType注入,如果找不到byType(也就是一个接口的实现类有多个),那么就按照byName注入。@resource是默认按照byName注入,当byName找不到的时候,则按照byType注入。代码如下:

@autowired示例

@Component
public class IndexDaoImpl implements IndexDao {
    @Override
    public void test() {
        System.out.println("IndexDaoImpl");
    }
}
@Component
public class IndexDaoImpl2 implements IndexDao {
    @Override
    public void test() {
        System.out.println("IndexDaoImpl2");
    }
}

service示例:

@Component
public class IndexServicelImpl implements IndexServicel {

    @Autowired
    IndexDao indexDaoImpl;

    @Override
    public void test() {
        indexDaoImpl.test();
    }
}

使用java config方式执行结果为:打印出indexDaoImpl

结论:当@autowired如果找不到byType(也就是一个接口的实现类有多个),那么就按照byName注入。

@resource示例

@Component
public class IndexServicelImpl implements IndexServicel {

    // @Autowired
    @Resource
    IndexDao indexDaoImpl;

    @Override
    public void test() {
        indexDaoImpl.test();
    }
}

使用java config方式执行结果为:打印出indexDaoImpl

继续修改代码:

@Component
public class IndexServicelImpl implements IndexServicel {

    // @Autowired
    @Resource
    IndexDao indexDaoImpl2;

    @Override
    public void test() {
        indexDaoImpl2.test();
    }
}

使用java config方式执行结果为:打印出indexDaoImpl2

继续修改代码:

@Component
public class IndexServicelImpl implements IndexServicel {

    // @Autowired
    @Resource
    IndexDao indexDaoImpl211;

    @Override
    public void test() {
        indexDaoImpl211.test();
    }
}

结果报错。

将IndexDaoImpl注释,只保证indexDao的实现类只有一个,则结果不报错,输出:IndexDaoImpl2

结论:@resource是默认按照byName注入,当byName找不到的时候,则按照byType注入。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值