标签: java spring spring-boot
CustomProperties对象位于外部库中,因此我无法添加注释,但我仍然希望通过前缀从Spring Boot YAML中提取它。
答案 0 :(得分:0)
发现它!
在@Configuration中:
@Bean @ConfigurationProperties("company.custom") public CustomProperties customProperties(){ return new CustomProperties(); }