【Apollo】阿波罗使用占位符 #{} 的异常分析

发布时间:2024年01月07日

1. 前言

出于线上 hotfix 报文请求模板的考虑,新增一个阿波罗配置,取值形如:
在这里插入图片描述

发布配置一段时间后,刚好需要重启服务,最终造成服务宕机,影响较大。现本地复现一下这个异常,并加以分析。

2. 复现

  • Java 声明配置的方式:@value
@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?

3. 分析

3.1 @Value 注解

SpringApollo 都会读该注解的值,一旦 Apollo 推送新的配置(或初始化),Spring 同时也会消费新配置。

  • @value 被消费的示意图
    在这里插入图片描述

3.2 根因

查阅了 Spring官方文档 后,形如 #{} 的表达式会被认为是 SPEL 表达式,在 Apollo 控制台配置的时候未想过占位符会被SPEL 表达式消费,造成预期外的异常。
在这里插入图片描述
在这里插入图片描述

4. 后记

  • 结论
    如果项目中用 @Value 承载 Apollo 的配置,那么不要使用与 SPEL 表达式 重合的符号。最好是干脆不要使用未经过生产检验的配置方式。如果实在要使用,可以用最原生的 Apollo 配置能力。
@Component
public class ConfigDemo {

    @ApolloConfig
    private Config config;

    public String getConfigValue() {
        return config.getProperty("configKey", "notfind");
    }
}

5. 参考资料

本地搭建 Apollo 环境
Apollo 官方文档
Spring SPEL 官方文档

文章来源:https://blog.csdn.net/chenghan_yang/article/details/135441953
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。