4. spring boot的配置

文件application.proprities, application.yml, bootstrap.properties, bootstrap.yml

  1. 自定义属性 @Value, 类上加入@Configuration
  2. 自定义配置类 @ConfigurationProperties(prefix="task")
  3. 参数间引用 -- 占位符 ${}
  4. 加载指定的配置文件 @PropertySource("classpath: task.properties")

你可能感兴趣的:(4. spring boot的配置)