Loading

摘要: 1 <dependencies> 2 <dependency> 3 <groupId>org.projectlombok</groupId> 4 <artifactId>lombok</artifactId> 5 <version>1.18.12</version> 6 <scope>compile 阅读全文
posted @ 2020-04-06 20:53 Rzk 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 1、 @Autowired与@Resource都可以用来装配bean. 都可以写在字段上,或写在setter方法上。(我们使用注解的时候 一般都是写到 字段/属性/成员变量 所以不写setter函数) 2、 @Autowired默认按类型装配 (autowired 默认是byType) (这个注解是 阅读全文
posted @ 2020-04-06 20:22 Rzk 阅读(222) 评论(0) 推荐(0) 编辑