问答详情
源自:1-2 微服务架构发展历史

1-3配置中心(11:09)

配置本地读取,怎么没有写过client-dev.yml,老师从哪里放进去的?诶

提问者:慕斯6292104 2020-03-09 21:51

个回答

  • qq_南方
    2020-03-31 09:44:39

    加载的是一个本地目录,

    server端配置

    spring:
      profiles:
        active: native
      cloud:
        config:
          server:
            native:
              search-locations: C:/Users/Administrator/IdeaProjects/springcloud-study01/_conf


    client-dev.yml  对应客户端配置:{name}-{profile}.yml

    spring:
      application:
        name: client
      cloud:
        uri: http://localhost:8081
        profile: dev


    client-dev.yml

    存储的是配置信息,

    user: south