application-strong3.yml 630 B

123456789101112131415161718192021222324252627282930313233343536
  1. spring:
  2. main:
  3. allow-bean-definition-overriding: true
  4. autoconfigure:
  5. exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
  6. #请求处理的超时时间
  7. ribbon:
  8. ReadTimeout: 10000
  9. ConnectTimeout: 10000
  10. # feign 配置
  11. feign:
  12. sentinel:
  13. enabled: true
  14. okhttp:
  15. enabled: true
  16. httpclient:
  17. enabled: false
  18. client:
  19. config:
  20. default:
  21. connectTimeout: 10000
  22. readTimeout: 10000
  23. compression:
  24. request:
  25. enabled: false
  26. response:
  27. enabled: false
  28. # 暴露监控端点
  29. management:
  30. endpoints:
  31. web:
  32. exposure:
  33. include: '*'