Nacos 抽取公共配置

文章目录

    • 创建一个公共配置文件
    • 其他配置文件引用
    • springboot配置文件

创建一个公共配置文件

Nacos 抽取公共配置_第1张图片

其他配置文件引用

${变量}

Nacos 抽取公共配置_第2张图片

springboot配置文件

spring:
  cloud:
    nacos:
      discovery:
        server-addr: @current.ip@:8848
        namespace: word_register_pro
      config:
        server-addr: @current.ip@:8848
        auto-refresh: true
        bootstrap:
          enable: true
        namespace: word_config_pro
        file-extension: properties
        ext-config:
          - auto-refresh: true
            data-id: jdbc.properties
            enable-remote-sync-config: true
            #            group: DEFAULT_GROUP
            #            namespace: word_config_dev
            type: properties
          - auto-refresh: true
            data-id: redis.properties
            enable-remote-sync-config: true
            type: properties
          - auto-refresh: true
            data-id: minio.properties
            enable-remote-sync-config: true
            type: properties
          - auto-refresh: true
            data-id: customProperty.properties
            enable-remote-sync-config: true
            type: properties
        shared-dataids: application.properties
        refreshable-dataids: application.properties

你可能感兴趣的:(spring,boot)