一.@Resource的理解 @Resource在bean注入的时候使用,@Resource所属包其实不是spring,而是javax.annotation.Resource,只不过spring支持该注解@Resource里有name,lookup,type,authenticationType,shareable,mappedName,description这几个属性具体看源码结构截图 0.可以直接在要注入的属性上这样写@Resourceprivate User user;不管配置文件里有没有…