Java教程

spring nacos找配置文件

本文主要是介绍spring nacos找配置文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1 首先会根据spring.cloud.nacos.config.namespace定义的命名空间下找配置信息,并且会加载指定的data-id,goup的配置信息

spring:
  cloud:
    nacos:
      config:
        namespace: bed108f2-2972-4ade-a27b-b53e4d99b66a
        server-addr: 192.168.2.107:8848
        file-extension: yaml
        shared-dataids: devops-share-dev.yaml
        refreshable-dataids: devops-share-dev.yaml
        ext-config:
          - data-id: devops-share-dev.yaml
            group: DEVOPS_GROUP
            refresh: true

2 其次就是项目名和spring.profile.active这个来个属性组成的配置文件进行加载

如下的属性配置,项目就会加载bed108f2-2972-4ade-a27b-b53e4d99b66a命名空间下的legal-material-test.yaml文件

spring:
  application:
    name: legal-material
  http:
    encoding:
      charset: UTF-8
      enabled: true
      force: true
  profiles:
    active: test
这篇关于spring nacos找配置文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!