出于线上 hotfix 报文请求模板的考虑,新增一个阿波罗配置,取值形如:
发布配置一段时间后,刚好需要重启服务,最终造成服务宕机,影响较大。现本地复现一下这个异常,并加以分析。
@Component
public class ConfigDemo {
@Value("${configKey:}")
private String configValue;
public String getConfigValue() {
return configValue;
}
}
异常用例:configValue 在远端配置的字符串存在占位符 #{}
报错信息
Error creating bean with name ‘configDemo’: Unsatisfied dependency expressed through field ‘configValue’; nested exception is org.springframework.beans.factory.BeanExpressionException: Expression parsing failed; nested exception is org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field ‘any’ cannot be found on object of type ‘org.springframework.beans.factory.config.BeanExpressionContext’ - maybe not public or not valid?
Spring
和 Apollo
都会读该注解的值,一旦 Apollo
推送新的配置(或初始化),Spring
同时也会消费新配置。
查阅了 Spring官方文档 后,形如 #{}
的表达式会被认为是 SPEL 表达式,在 Apollo 控制台配置的时候未想过占位符会被SPEL 表达式消费,造成预期外的异常。
@Value
承载 Apollo 的配置,那么不要使用与 SPEL 表达式 重合的符号。最好是干脆不要使用未经过生产检验的配置方式。如果实在要使用,可以用最原生的 Apollo 配置能力。@Component
public class ConfigDemo {
@ApolloConfig
private Config config;
public String getConfigValue() {
return config.getProperty("configKey", "notfind");
}
}