| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- server:
- port: 10100
- spring:
- application:
- name: sckw-ng-transport
- profiles:
- # active: ${DEPLOY_MODE:dev}
- active: @profiles.active@
- main:
- allow-bean-definition-overriding: true
- allow-circular-references: true
- # 车辆轨迹服务配置
- vehicle:
- trace:
- api:
- base-url: ${VEHICLE_TRACE_API_URL:http://localhost:8080}
- # Feign 配置
- feign:
- client:
- config:
- default:
- connect-timeout: 5000
- read-timeout: 10000
- vehicle-trace-service:
- connect-timeout: 5000
- read-timeout: 10000
- logger-level: full
- httpclient:
- enabled: true
- max-connections: 200
- max-connections-per-route: 50
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- logging:
- level:
- root: info
- com.sckw.payment: debug
- # SpringDoc OpenAPI 配置
- springdoc:
- swagger-ui:
- path: /swagger-ui.html
- tags-sorter: alpha
- operations-sorter: alpha
- api-docs:
- path: /v3/api-docs
- show-actuator: true
- cache:
- disabled: true
|