摘要: @EnableConfigurationProperties 注解的作用是: 1、让使用了 @ConfigurationProperties 注解的类生效 2、将该类注入到 IOC 容器中,交由 IOC 容器进行管理 一、使用 @ConfigurationProperties + @Componen 阅读全文
posted @ 2020-11-05 23:48 变体精灵 阅读(30425) 评论(4) 推荐(13) 编辑
摘要: 一、实体类 Cat.java // 省略了 set/get 方法 public class Cat { private Integer id; private String name; private String age; } Dog.java // 省略了 set/get 方法 public c 阅读全文
posted @ 2020-11-05 09:24 变体精灵 阅读(1011) 评论(0) 推荐(0) 编辑