赞
踩
nacos上添加配置信息,application.yml
px:
testValue: nacos
获取值
public class TestConfig {
@Value("${px.testValue}")
private String nacosValue;
}
当修改nacos上的配置文件时,nacosValue是不变的,需要重启服务。想要修改立即生效,不重启服务
方法1:添加@RefreshScope注解
@RefreshScope
@Component
public class TestConfig {
@Value("${px.testValue}")
private String nacosValue;
}
方法2:@ConfigurationProperties注解,前缀匹配
@ConfigurationProperties(prefix = "px")
public class TestConfig {
private String nacosValue;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。