<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> author.name=zhangsan author.age=20 再在配置类开头加上@PropertySource("classpath:your.properties"),其余用法与加载yml的配置一样 @Component @Pr...
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> 1. 2. 3. 4. 5. author.name=zhangsan author.age=20 1. 2. 再在配置类开头加上@PropertySource("classpath:your.properties"),其余用法与加载yml的配置...