application.yml 550 B

1234567891011121314151617
  1. server:
  2. port: 80
  3. eureka:
  4. client:
  5. service-url:
  6. defaultZone: http://QingSe:hello@eureka-7001.com:7001/eureka,http://QingSe:hello@eureka-7002.com:7002/eureka,http://QingSe:hello@eureka-7003.com:7003/eureka #绑定到此地址中的eureka注册中心
  7. register-with-eureka: false
  8. feign:
  9. compression:
  10. request:
  11. mime-types: # 可以被压缩的类型
  12. - text/xml
  13. - application/xml
  14. - appliaction/json
  15. min-request-size: 2048 # 超过2048的字节进行压缩
  16. hystrix:
  17. enabled: true