Nacos @Value 无法自动刷新获取最新的值

解决办法:

给bean加个@RefreshScope即可

import org.springframework.cloud.context.config.annotation.RefreshScope
......

@Service
@RefreshScope
public class XXXService{

    @Value("${nacos.config.key}")
    private String key;

    ......
}

你可能感兴趣的:(Nacos @Value 无法自动刷新获取最新的值)