SpringBoot-Note
Spring Boot干货系列总纲 阅读笔记
配置文件解析
默认src/main/resources
目录下,两种格式application.properties
或application.yml
自定义属性,在配置文件application.properties
定义diy.name="hello"
,在使用的地方加上注解
1 |
|
自定义配置类,需要在springboot入口类添加@EnableConfigurationProperties({ConfigBean.class})
1 |
|