Zuul配置心得

  • 2019 年 11 月 1 日
  • 笔记

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/weixin_44580977/article/details/99618764

server:    port: 10010  spring:    application:      name: api-gateway  eureka:    client:      service-url:        defaultZone: http://127.0.0.1:10086/eureka      registry-fetch-interval-seconds: 5    instance:      prefer-ip-address: true      ip-address: 127.0.0.1      instance-id: ${spring.application.name}:${server.port}  zuul:    prefix: /api # 添加路由前缀    retryable: true    routes:      user-service: /user-service/** # 这里是映射路径  ribbon:    ConnectTimeout: 250 # 连接超时时间(ms)    ReadTimeout: 2000 # 通信超时时间(ms)    OkToRetryOnAllOperations: true # 是否对所有操作重试    MaxAutoRetriesNextServer: 1 # 同一服务不同实例的重试次数    MaxAutoRetries: 1 # 同一实例的重试次数