application-dev.yml 1.24 KB
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
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:
27 28
  ReadTimeout: 10000
  ConnectTimeout: 10000
Administrator committed
29 30 31 32 33 34 35 36
  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,techhero-framework-config
Administrator committed
38 39 40 41 42 43 44


tomcat:
  max-connections: 500
  max-threads: 30
  min-spare-threads: 3
  accept-count: 10
45
  
46 47 48 49 50 51 52 53 54 55 56 57 58 59
ignore:
  urls:
    - /*/open/**
    - /swagger/api-docs
    - /swagger-resources/**
    - /swagger-ui.html
    - /*/v2/api-docs
    - /webjars/**
    - /auth/**
    - /oss/**
    - /system/db/getUserListPage/**
    - /exam/dc/rest/dcKsjhb/getExamPlan
    - /system/vc/code
    - /system/sys/getSubSystems
Administrator committed
60