Spring的@Value如何从Nacos配置中心获取值并自动刷新
作者:chuixue24 时间:2022-03-11 02:17:03
@Value从Nacos配置中心获取值并自动刷新
在使用Nacos作为配置中心时,除了@NacosValue可以做到自动刷新外,nacos-spring-context:0.3.4版本是支持@Value获取Nacos配置中心的值,并动态刷新的,该功能是Spri依靠ngValueAnnotationBeanPostProcessor类来实现:
@Override
protected Tuple<String, NacosValueTarget> doWithAnnotation(String beanName,
Object bean, Value annotation, int modifiers, Method method, Field field) {
if (annotation != null) {
if (Modifier.isStatic(modifiers)) {
return Tuple.empty();
}
if (bean.getClass().isAnnotationPresent(NacosRefresh.class)) {
String placeholder = resolvePlaceholder(annotation.value());
if (placeholder == null) {
return Tuple.empty();
}
NacosValueTarget nacosValueTarget = new NacosValueTarget(bean, beanName,
method, field);
nacosValueTarget.setAnnotationType(getAnnotationType().getSimpleName());
logger.debug("@Value register auto refresh");
return Tuple.of(placeholder, nacosValueTarget);
}
}
return Tuple.empty();
}
分析其源码可以看到,如果bean上有注解@NacosRefresh,则会自动刷新。
在实际使用时,发现bean上的注解是@Configuration则不会自动刷新,而使用@Component则可以做到自动刷新。
代码如下:
@NacosRefresh
//@Component
@Configuration
public class BeanTest {
@Value("${autofresh.test}")
private String testValue;
@NacosValue(value="${autofresh.test2}",autoRefreshed = true)
private String testValue2;
/**
* @return the testValue2
*/
public String getTestValue2() {
return testValue2;
}
/**
* @param testValue2 the testValue2 to set
*/
public void setTestValue2(String testValue2) {
this.testValue2 = testValue2;
}
/**
* @return the testValue
*/
public String getTestValue() {
return testValue;
}
/**
* @param testValue the testValue to set
*/
public void setTestValue(String testValue) {
this.testValue = testValue;
}
}
测试类:
@Test
public void testValueRefreshinNacos() throws InterruptedException {
System.out.println(beanTest.getTestValue());
System.out.println(beanTest.getTestValue2());
System.out.println("------修改前");
Thread.sleep(1000*60);
System.out.println(beanTest.getTestValue());
System.out.println(beanTest.getTestValue2());
System.out.println("------修改后");
}
这就和@Component与@Configuration的区别有关了,@Component注解的bean是原生bean,@Configuration是被cglib动态增加的bean。
Nacos属性值自动刷新
1.@NacosValue获取最新值
引入jar包:
<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>nacos-config-spring-boot-starter</artifactId>
<version>0.2.7</version>
</dependency>
编写配置类:
@Configuration
@EnableNacosConfig(globalProperties = @NacosProperties(serverAddr = "127.0.0.1:8848"))
@NacosPropertySource(dataId = "example", group="test",autoRefreshed = true)
public class NacosConfiguration { }
编写测试类:
@Controller
public class ConfigController {
@NacosValue(value = "${test.data}", autoRefreshed = true)
private boolean data;
@RequestMapping(value = "/test", method = GET)
@ResponseBody
public boolean get() { return data; }
}
2.@Value获取最新值
引入jar包:
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
引入配置:
spring:
application:
name: example
cloud:
nacos:
config:
extension-configs[0]:
dataId: test.yml
group: test
refresh: true
server-addr: 127.0.0.1:8848
namespace: c845e96f-4423-4618-8c26-5e4d510f566a
enabled: true
refresh-enabled: true
编写测试类:
@RestController
@RefreshScope
public class TestController {
@NacosValue(value = "${test.data}", autoRefreshed = true)
private String data;
@Value(value = "${test.data}")
private String datas;
@GetMapping("test")
public String test() {
return "data :" + data + ",datas="+datas;
}
}
备注:
方式一@NacosValue获取最新值nacos配置信息需要写在配置类上
方式二@NacosValue获取不到值(如果需要使用该注解需要引入方式一的jar,但是不重启服务获取不到最新值),@Value获取最新值一定要加@RefreshScope注解,配置文件中配置refresh: true
来源:https://blog.csdn.net/chuixue24/article/details/107386045
标签:Spring,@Value,Nacos配置,自动刷新
0
投稿
猜你喜欢
java通过Idea远程一键部署springboot到Docker详解
2022-03-26 09:31:27
c# 深拷贝与浅拷贝的区别分析及实例
2023-06-29 05:00:06
详解android异步更新UI的几种方法
2022-03-07 08:27:22
Docker 部署 SpringBoot 项目整合 Redis 镜像做访问计数示例代码
2022-06-06 19:48:18
Java 求解如何把二叉搜索树转换为累加树
2021-11-19 14:09:54
C#开发微信门户及应用(4) 关注用户列表及详细信息管理
2023-06-05 07:40:43
springboot中使用@Transactional注解事物不生效的坑
2021-10-03 10:01:47
eclipse报错 eclipse启动报错解决方法
2023-04-28 08:43:49
springboot如何读取配置文件到静态工具类
2023-11-28 04:44:54
Java容器类源码详解 Deque与ArrayDeque
2021-10-15 12:43:21
Java如何跳出当前多重循环你知道吗
2022-12-17 02:22:17
Android XML設置屏幕方向(android:screenOrientation)详解
2021-09-08 09:46:35
在winform下实现左右布局多窗口界面的方法
2023-02-23 11:31:51
Java利用for循环打印菱形的实例教程
2021-08-16 14:18:44
Android中通知Notification的使用方法
2023-10-17 22:06:17
C# using语法糖图文详解
2023-08-05 02:57:36
Android简单实现文件下载
2023-08-28 06:33:17
Android 3D滑动菜单完全解析 Android实现推拉门式的立体特效
2022-04-19 04:36:01
Android实现自定义华丽的水波纹效果
2023-10-03 23:12:50
Android开发返回键明暗点击效果的实例代码
2022-06-08 06:39:27