阿里巴巴的@NacosValue和spring的@Value、@RefreshScope的相同点和区别
时间: 2024-05-01 17:08:43 浏览: 268
Spring @value和@PropertySource注解使用方法解析
5星 · 资源好评率100%
@NacosValue和@Value都是用来在Spring Boot中获取配置属性的注解,但是@NacosValue是阿里巴巴基于Nacos开发的,能够实现动态更新配置值,而@Value只能在应用启动时加载一次配置文件中的值。@RefreshScope注解则是为Spring Cloud应用中的bean提供动态刷新的功能,类似于@NacosValue的作用。
阅读全文