Spring Cloud 相关配置信息说明

#自我保护机制
eureka: 
  server:
    enable-self-preservation: false

自我保护机制,默认为开启(true),一般最好还是建议设置为false,为防止后续微服务的调用不会出错

eureka: 
  instance:
    hostname: clientName

给注册到Eureka Server上的服务起别名,可任意起

PRODUCT:
  ribbon:
    NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule

给所调用的服务PRODUCT自定义负载均衡策略,其常见取值有如下几个:

随机:com.netflix.loadbalancer.RandomRule

轮询:com.netflix.loadbalancer.RoundRobinRule

#统一配置中心Server端的配置
spring:
  application:
    name: config
  cloud:
    config:
      server:
        git:
          uri: https://git.code.tencent.com/bc/xxx.git
          search-paths: config-repo
          username: abc
          password: 1234
          basedir: D:\可删除文件

以上配置是Spring Cloud的统一配置中心Server端的配置,其中需要说明的字段为basedir,该字段表示的是从Git上获取的配置文件所存放的临时目录路径,统一配置中心会定时清除临时配置。

你可能感兴趣的:(Spring,Cloud)