版本说明

  功能特性必须基于版本来进行说明,因为版本在更迭中,功能可能就失效了。

版本

    spring boot     2.1.3.RELEASE

@ConfigurationProperties

     这个注解直接加在类上面,这个类就可以和spring boot配置文件进行一 一映射。

@EnableConfigurationProperties

       这个注解的作用是,让@ConfigurationProperties   修饰的类可以加载到spring ioc中

这两个类一版组合使用

@EnableConfigurationProperties 与@ConfigurationProperties 配合使用_spring