在外部Properties对象上等效于@ConfigurationProperties(prefix =“foo”)?

时间:2017-07-19 10:46:06

标签: java spring spring-boot

CustomProperties对象位于外部库中,因此我无法添加注释,但我仍然希望通过前缀从Spring Boot YAML中提取它。

1 个答案:

答案 0 :(得分:0)

发现它!

在@Configuration中:

  @Bean
  @ConfigurationProperties("company.custom")
  public CustomProperties customProperties(){
    return new CustomProperties();
  }