application.yaml 786 字节
Newer Older
Q
qinyingjie 已提交
1 2
#端口号
server:
Q
qinyingjie 已提交
3 4 5 6 7 8 9 10 11 12
  port: 8080

spring:
  application:
    name: portal-service #服务名称

#服务提供者
eureka:
  client:
    service-url:
Q
qinyingjie 已提交
13 14
      defaultZone: http://eureka8767:8767/eureka/,http://eureka8768:8768/eureka/,http://eureka8769:8769/eureka/

Q
qinyingjie 已提交
15 16 17 18
#开启feign开始hystrix的支持
feign:
  hystrix:
    enabled: true
Q
qinyingjie 已提交
19

Q
qinyingjie 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 5000 #hystrix超时时间
        timeout:
          enabled: true   #开启hystrix超时管理
ribbon:
  ReadTimeout: 2000   #请求超时时间
  http:
    client:
      enabled: true  #开启ribbon超时管理
Q
qinyingjie 已提交
34 35 36 37 38 39 40 41
  ConnectTimeout: 2000    #连接超时时间


management:
  endpoints:
    web:
      exposure:
        include: "*"