1

如果@property.absent@中 定义的属性application.properties无法扩展(未在 中定义pom.xml),则绑定值是文字@property.absent@。有没有一种简单的方法可以用自定义默认值(例如 null)覆盖它,尤其是。在自动配置中与@ConfigurationProperties?

4

1 回答 1

0

应用程序.yml 文件:

test:
 property: @property.absent@

配置属性类:

@ConfigurationProperties("test")
public class TestConfigurationProperties {

private String property = "your default value";

//Getters and Setters

}
于 2020-04-18T23:32:30.877 回答