springboot-yml-class-configuration

springboot-yml-class-configuration

springboot自定义配置类,通过一系列配置实现yml中赋值,从而实现一些常量的配置

上实现步骤:

@Data
@Component
@ConfigurationProperties(prefix = "dog")
public class Dog {
    private String name;
    private String color;
}

yml中配可以实现配置

dog:
  color: red
  name: wangcai

如果实现配置时智能提示功能需要引入一个依赖如下

<dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
上一篇:09 服务配置Config


下一篇:springboot整合RabbitMQ