| 1234567891011121314151617181920212223242526272829303132333435 |
- server:
- port: 10030
- spring:
- application:
- name: sckw-ng-system
- profiles:
- active: @profiles.active@
- # active: dev
- # active: test
- 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
|