Spring Cloud Alibaba不能获取Nacos配置
0
之前学习SpringCloud还是几年前,以前Eureka注册中心现在不维护了,Zuul被Gateway代替了,不过看了一下还是阿里巴巴这套不错。
不过搞了半天新版本居然获取不老Nacos配置,原来需要添加依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
这个依赖也是才出不久。
@NacosConfigurationProperties
@NacosConfigurationProperties
这个注解在SpringCloud环境下面也不能获得配置,需要配置ext-config
。
这个可能使用nacos-config-spring-boot-starter
这个有效果,但是使用spring-cloud-starter-alibaba-nacos-config
就没有效果,而且使用注解是@NacoaPropertySource
。
dubbo
spring-cloud-starter-dubbo
不能使用dubbo admin管理服务
Sentinel Dashboard
spring cloud alibaba使用nacos作为配置中心默认不能动态保存Sentinel Dashboard规则配置
参考:
https://github.com/alibaba/Sentinel/wiki/%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%99%E6%89%A9%E5%B1%95
https://github.com/alibaba/Sentinel/wiki/Sentinel-%E6%8E%A7%E5%88%B6%E5%8F%B0%EF%BC%88%E9%9B%86%E7%BE%A4%E6%B5%81%E6%8E%A7%E7%AE%A1%E7%90%86%EF%BC%89#%E8%A7%84%E5%88%99%E9%85%8D%E7%BD%AE
注意:
按照上面流程改完也只能在流控规则
修改才有效果
Spring Cloud Alibaba图谱