@Autowired和@Resource

发布时间 2023-03-29 22:12:07作者: 土木转行的人才

1.区别

@Resource

根据 name 查找已知确定资源,查询不到再根据 type 查找已知确定资源

@Autowired

根据 type 搜索范围内的资源,查询不到再根据 name 搜索范围内的资源

2.使用范围推荐 @Autowired

如下只有@Autowired适用:

@Autowired
List<UserService> list

3.参考

https://blog.csdn.net/xhbzl/article/details/126765893