当前位置:   article > 正文

nacos修改配置信息,需要重启服务才能生效问题解决_nacos修改配置后需要重启服务吗

nacos修改配置后需要重启服务吗

nacos上添加配置信息,application.yml

px:
  testValue: nacos
  • 1
  • 2

获取值

public class TestConfig {

    @Value("${px.testValue}")
    private String nacosValue;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

当修改nacos上的配置文件时,nacosValue是不变的,需要重启服务。想要修改立即生效,不重启服务
方法1:添加@RefreshScope注解

@RefreshScope
@Component
public class TestConfig {

    @Value("${px.testValue}")
    private String nacosValue;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

方法2:@ConfigurationProperties注解,前缀匹配


@ConfigurationProperties(prefix = "px")
public class TestConfig {
    private String nacosValue;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/284394
推荐阅读
相关标签
  

闽ICP备14008679号