官方网址
nacos官方网址 nacos-配置中心官方文档说明 nacos-注册中心官方文档说明
一、nacos注册中心配置详解
二、nacos 配置中心详解
spring:
cloud:
nacos:
server-addr: 39.103.194.102:8848
username: nacos
password: nacos
config:
file-extension: yaml
shared-configs:
- data-id: com.mj.dataid-1.yaml
refresh: true
extension-configs:
- data-id: com.mj.dataid-2.yaml
refresh: true
三、nacos配置动态刷新
@RestController
@RequestMapping("/nacos")
@RefreshScope
public class NacosController {
@Value("${user.name}")
private String username;
@Value("${user.password}")
private String password;
@GetMapping("/get")
public String getUsername() {
return this.username + this.password;
}
}
在使用的Bean 上加入 @RefreshScope 注解即可
四、nacos配置文件的优先级
profile 方式 > 默认配置文件 > extension-configs ( 扩展配置,下标越大 优先级越大)> shared-configs(共享配置)
|