情况
我将.properties文件中的属性注入到使用@Value注释的字段中.但是,此属性提供敏感凭据,因此我将其从存储库中删除.我仍然希望如果有人想要运行项目并且没有.properties文件,其凭据将默认值设置为字段.
问题
即使我将默认值设置为字段本身,当.properties文件不存在时,我也会遇到异常:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxx': Injection of autowired dependencies Failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'secret' in string value "${secret}"
这是带注释的字段:
@Value("${secret}")
private String ldapSecret = "secret";
我预计在这种情况下只会设置普通字符串“secret”.
最佳答案
完全回答你的问题……
原文链接:https://www.f2er.com/spring/432666.html@Value("${secret:secret}")
private String ldapSecret;
以下是一些示例完整性的变化……
将String默认为null:
@Value("${secret:#{null}}")
private String secret;
默认数字:
@Value("${someNumber:0}")
private int someNumber;