12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- spring:
- jackson:
- default-property-inclusion: always
- main:
- allow-circular-references: true
- allow-bean-definition-overriding: true
- autoconfigure:
- exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- cloud:
- sentinel:
- filter:
- # sentinel 在 springboot 2.6.x 不兼容问题的处理
- enabled: false
- # feign 配置
- feign:
- sentinel:
- enabled: true
- okhttp:
- enabled: true
- httpclient:
- enabled: false
- client:
- config:
- default:
- connectTimeout: 10000
- readTimeout: 10000
- compression:
- request:
- enabled: true
- response:
- enabled: true
- # 暴露监控端点
- management:
- endpoints:
- web:
- exposure:
- include: '*'
- # mybatis-plus:
- # configuration:
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|