application-dev.yml 938 Bytes
Newer Older
Administrator committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
spring:
  http:
    multipart:
      enabled: true
      max-file-size: 300MB
      max-request-size: 300MB
      
feign:
  hystrix:
    enabled: true
  okhttp:
    enabled: true
  httpclient:
    enabled: false
  client:
    config:
      feignName:
        connectTimeout: 10000
        readTimeout: 10000
  compression:
    request:
      enabled: true
    response:
      enabled: true

ribbon:
  ReadTimeout: 10000
  ConnectTimeout: 10000
  eureka:
    enabled: true
  httpclient:
    enabled: false
  okhttp:
    enabled: true
  eager-load:
    enabled: true
37
    clients: techhero-framework-config,techhero-framework-eureka,techhero-framework-auth,techhero-platform-exam,techhero-platform-system,techhero-business-track,techhero-business-command,techhero-business-transdata,techhero-business-visualization,techhero-business-inspection
Administrator committed
38 39 40 41 42 43 44


tomcat:
  max-connections: 500
  max-threads: 30
  min-spare-threads: 3
  accept-count: 10
45
  
Administrator committed
46