芥末果酱

导航

2022年8月31日 #

@Autowired与@Resource

摘要: @Autowired @Autowired是按类型自动转配的,不支持id匹配。 需要导入 spring-aop的包! @Autowired(required=false) 说明: false,对象可以为null;true,对象必须存对象,不能为null。 @Autowired是根据类型自动装配的,加 阅读全文

posted @ 2022-08-31 21:32 芥末果酱 阅读(25) 评论(0) 推荐(0) 编辑

spring三种注入方式

摘要: 构造器注入 @Autowired public AService(BService bService) { this.bService = bService; } set注入 (重点) AService aService; @Autowired public void setaService(ASe 阅读全文

posted @ 2022-08-31 21:29 芥末果酱 阅读(19) 评论(0) 推荐(0) 编辑