admin管理员组文章数量:1352126
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.
本文标签:
版权声明:本文标题:java - During the startup of a SpringBoot project, the value of the Apollo-injected variable is null - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743896983a2557970.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论