6. Nacos 配置管理

空~2022年11月7日
  • SpringCloud
大约 4 分钟

6. Nacos 配置管理

Nacos 除了可以做注册中心,同样可以做配置管理来使用。

官方文档: Nacos config · alibaba/spring-cloud-alibaba Wiki (github.com)open in new window

6.1.统一配置管理

当微服务部署的实例越来越多,达到数十、数百时,逐个修改微服务配置就会让人抓狂,而且很容易出错。我们需要一种统一配置管理方案,可以集中管理所有实例的配置。

image-20210714164426792

Nacos 一方面可以将配置集中管理,另一方可以在配置变更时,及时通知微服务,实现配置的热更新。

6.1.1.在 nacos 中添加配置文件

如何在 nacos 中管理配置呢?

image-20210714164742924

然后在弹出的表单中,填写配置信息:

image-20210714164856664

注意:项目的核心配置,需要热更新的配置才有放到 nacos 管理的必要。基本不会变更的一些配置还是保存在微服务本地比较好。

6.1.2.从微服务拉取配置

微服务要拉取 nacos 中管理的配置,并且与本地的 application.yml 配置合并,才能完成项目启动。

但如果尚未读取 application.yml,又如何得知 nacos 地址呢?

因此 spring 引入了一种新的配置文件:bootstrap.yaml 文件,会在 application.yml 之前被读取,流程如下:

img

1)引入 nacos-config 依赖

首先,在 user-service 服务中,引入 nacos-config 的客户端依赖:

<!--nacos配置管理依赖-->
<dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>

2)添加 bootstrap.yaml

然后,在 user-service 中添加一个 bootstrap.yaml 文件,内容如下:

spring:
  application:
    name: userservice # 服务名称
  profiles:
    active: dev #开发环境,这里是dev
  cloud:
    nacos:
      server-addr: localhost:8848 # Nacos地址
      config:
        file-extension: yml # 文件后缀名

3)删除 application.yml 中的重复配置:

server:
  port: 8081
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/heima?useSSL=false
    username: root
    password: root
    driver-class-name: com.mysql.jdbc.Driver
#  application:
#    name: userservice # 服务名称
#  cloud:
#    nacos:
#      server-addr: localhost:8848 # Nacos地址
#      discovery:
#        cluster-name: HZ # 集群名称
logging:
  level:
    cn.itcast: debug

pattern:
  dateformat: MM-dd HH:mm:ss:SSS

这里会根据 spring.cloud.nacos.server-addr 获取 nacos 地址,再根据

${spring.application.name}-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}作为文件 id,来读取配置。

本例中,就是去读取userservice-dev.yaml

image-20210714170845901

4)读取 nacos 配置

在 user-service 中的 UserController 中添加业务逻辑,读取 pattern.dateformat 配置:

image-20210714170337448

完整代码:

package cn.itcast.user.web;

import cn.itcast.user.pojo.User;
import cn.itcast.user.service.UserService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

@Slf4j
@RestController
@RequestMapping("/user")
public class UserController {

    @Autowired
    private UserService userService;

    @Value("${pattern.dateformat}")
    private String dateformat;

    @GetMapping("now")
    public String now(){
        return LocalDateTime.now().format(DateTimeFormatter.ofPattern(dateformat));
    }
    // ...略
}

在页面访问,可以看到效果:

image-20210714170449612

6.2.配置热更新

我们最终的目的,是修改 nacos 中的配置后,微服务中无需重启即可让配置生效,也就是配置热更新

要实现配置热更新,可以使用两种方式:

6.2.1.方式一

在@Value 注入的变量所在类上添加注解@RefreshScope:

image-20210714171036335

6.2.2.方式二

使用@ConfigurationProperties 注解代替@Value 注解。

在 user-service 服务中,添加一个类,读取 patterrn.dateformat 属性:

package cn.itcast.user.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@Data
@ConfigurationProperties(prefix = "pattern")
public class PatternProperties {
    private String dateformat;
}

在 UserController 中使用这个类代替@Value:

image-20210714171316124

完整代码:

package cn.itcast.user.web;

import cn.itcast.user.config.PatternProperties;
import cn.itcast.user.pojo.User;
import cn.itcast.user.service.UserService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

@Slf4j
@RestController
@RequestMapping("/user")
public class UserController {

    @Autowired
    private UserService userService;

    @Autowired
    private PatternProperties patternProperties;

    @GetMapping("now")
    public String now(){
        return LocalDateTime.now().format(DateTimeFormatter.ofPattern(patternProperties.getDateformat()));
    }

    // 略
}

6.3.配置共享

其实微服务启动时,会去 nacos 读取多个配置文件,例如:

  • [spring.application.name]-[spring.profiles.active].yaml,例如:userservice-dev.yaml

  • [spring.application.name].yaml,例如:userservice.yaml

[spring.application.name].yaml不包含环境,因此可以被多个环境共享。

下面我们通过案例来测试配置共享

6.3.1.添加一个环境共享配置

我们在 nacos 中添加一个 userservice.yaml 文件:

image-20210714173233650

6.3.2.在 user-service 中读取共享配置

在 user-service 服务中,修改 PatternProperties 类,读取新添加的属性:

image-20210714173324231

在 user-service 服务中,修改 UserController,添加一个方法:

image-20210714173721309

6.3.3.运行两个 UserApplication,使用不同的 profile

修改 UserApplication2 这个启动项,改变其 profile 值:

image-20210714173538538

image-20221107153326444

image-20221107153440948

这样,UserApplication(8081)使用的 profile 是 test,UserApplication2(8082)使用的 profile 是 dev。

启动 UserApplication 和 UserApplication2

访问 http://localhost:8081/user/propopen in new window,结果:

image-20221107155104542

访问 http://localhost:8082/user/propopen in new window,结果:

image-20221107155120268

可以看出来,不管是 dev,还是 test 环境,都读取到了 envSharedValue 这个属性的值。

6.3.4.配置共享的优先级

当 nacos、服务本地同时出现相同属性时,优先级有高低之分:

image-20210714174623557