Nacos配置文件获取不到 动态刷新失效问题解决
Posted 抓手
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nacos配置文件获取不到 动态刷新失效问题解决相关的知识,希望对你有一定的参考价值。
首先请注意是基于什么环境使用的Nacos配置中心,在 Spring 、Spring Boot 、Spring Cloud 下的使用方式略有区别。
Spring
1.添加依赖
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-spring-context</artifactId>
<version>$latest.version</version>
</dependency>
2.填加配置类
@Configuration
@EnableNacosConfig(globalProperties = @NacosProperties(serverAddr = "127.0.0.1:8848"))
@NacosPropertySource(dataId = "myDataId ", autoRefreshed = true)
public class NacosConfiguration
3.通过@NacosValue设置属性值与动态刷新
@RestController
public class TestController
@NacosValue(value = "$xxx.abc", autoRefreshed = true)
private String abc;
@RequestMapping(value = "/open/test", method = RequestMethod.GET)
public String test()
return abc;
Spring Boot
spring boot和spring大致相同,只需要改一下依赖就行了。
注意:版本 0.2.x.RELEASE 对应的是 Spring Boot 2.x 版本,版本 0.1.x.RELEASE 对应的是 Spring Boot 1.x 版本。
<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>nacos-config-spring-boot-starter</artifactId>
<version>$latest.version</version>
</dependency>
Spring Cloud
1.添加依赖
注意:版本 2.1.x.RELEASE 对应的是 Spring Boot 2.1.x 版本。版本 2.0.x.RELEASE 对应的是 Spring Boot 2.0.x 版本,版本 1.5.x.RELEASE 对应的是 Spring Boot 1.5.x 版本。
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
<version>$latest.version</version>
</dependency>
2.添加本地配置
注意:配置文件匹配是通过 $prefix-$spring.profiles.active.$file-extension ,prefix 默认为 spring.application.name,active 不存在时不拼接,file-extension 为配置文件格式properties或yaml。
spring:
application:
name: myServiceName
cloud:
nacos:
config:
server-addr: 127.0.0.1:8848
file-extension: yaml
group: myGroup
namespace: myNamespaceId
3.通过@Value设置属性值,通过@RefreshScope实现动态刷新
@RefreshScope
@RestController
public class TestController
@Value("$xxx.abc")
private String abc;
@RequestMapping(value = "/open/test", method = RequestMethod.GET)
public String test()
return abc;
测试配置刷新功能,得到一行日志:
o.s.c.e.event.RefreshEventListener : Refresh keys changed: [xxx.abc]
以上是关于Nacos配置文件获取不到 动态刷新失效问题解决的主要内容,如果未能解决你的问题,请参考以下文章
Nacos基于Spring cloud客户端配置动态刷新,配置文件命名逻辑
问题解决jasypt-spring-boot-starter导致apollo动态配置刷新失效
Spring Cloud——Spring Cloud Alibaba 2021 Nacos Config bootstrap 配置文件失效解决方案