application-strong3.yml 920 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. spring:
  2. jackson:
  3. default-property-inclusion: always
  4. main:
  5. allow-circular-references: true
  6. allow-bean-definition-overriding: true
  7. autoconfigure:
  8. exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
  9. mvc:
  10. pathmatch:
  11. matching-strategy: ant_path_matcher
  12. cloud:
  13. sentinel:
  14. filter:
  15. # sentinel 在 springboot 2.6.x 不兼容问题的处理
  16. enabled: false
  17. # feign 配置
  18. feign:
  19. sentinel:
  20. enabled: true
  21. okhttp:
  22. enabled: true
  23. httpclient:
  24. enabled: false
  25. client:
  26. config:
  27. default:
  28. connectTimeout: 10000
  29. readTimeout: 10000
  30. compression:
  31. request:
  32. enabled: true
  33. response:
  34. enabled: true
  35. # 暴露监控端点
  36. management:
  37. endpoints:
  38. web:
  39. exposure:
  40. include: '*'
  41. # mybatis-plus:
  42. # configuration:
  43. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl