给定一些具有不可解析占位符的应用程序配置,如下所示application.yml
my:
thing: ${missing-placeholder}/whatever
当我使用@Value
注释时,配置文件中的占位符会被验证,所以在这种情况下:
package com.test;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class PropValues {
@Value("${my.thing}") String thing;
public String getThing() { return thing; }
}
我得到一个IllegalArgumentException: Could not resolve placeholder 'missing-placeholder' in value "${missing-placeholder}/whatever"
. 这是因为该值是由直接设置的,AbstractBeanFactory.resolveEmbeddedValue
并且没有任何东西可以捕获抛出的异常PropertyPlaceholderHelper.parseStringValue
但是,为了转向@ConfigurationProperties
样式,我注意到缺少此验证,例如在这种情况下:
package com.test;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.validation.annotation.Validated;
@ConfigurationProperties(prefix = "my")
public class Props {
private String thing;
public String getThing() { return thing; }
public void setThing(String thing) { this.thing = thing; }
}
也不例外。我可以看到PropertySourcesPropertyValues.getEnumerableProperty
通过注释捕获异常// Probably could not resolve placeholders, ignore it here
并将无效值收集到其内部映射中。后续数据绑定不会检查未解析的占位符。
我检查了简单地将@Validated
and@Valid
注释应用于类和字段并没有帮助。
ConfigurationProperties
有什么方法可以保留在具有绑定的未解析占位符上引发异常的行为?