最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - During the startup of a SpringBoot project, the value of the Apollo-injected variable is null - Stack Overflow

programmeradmin2浏览0评论

I encountered an issue where, when using Apollo to inject a static variable property, the variable is null during project startup. However, when the variable is modified via Apollo, its value is displayed correctly. The code is roughly as follows.

@Service
public class ApolloServiceImpl implements ApolloService {
    @Value("${acc.clean.apollo.loading.num:10}")
    private static Long apollo_num ;
    @Value("${acc.clean.apollo.loading.num:10}")
    private Long num1;

    @Override
    public String getApolloNum() {
        return "static value:" + apollo_num + " private value:" + num1;
    }
}

The execution result during project startup

static value:null private value:14

The execution result after modifying the data via Apollo

static value:17 private value:17

I understand that the way of injecting static variables in the code was incorrect and have already fixed it. However, I want to know the reason behind this phenomenon (the data being null during project startup but correct after modification). I suspect it's due to the order of configuration data loading.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论