bootstrap.yml 675 B

1234567891011121314151617181920212223242526272829303132333435
  1. server:
  2. port: 10030
  3. spring:
  4. application:
  5. name: sckw-ng-system
  6. profiles:
  7. active: @profiles.active@
  8. # active: dev
  9. # active: test
  10. main:
  11. allow-bean-definition-overriding: true
  12. allow-circular-references: true
  13. # 车辆轨迹服务配置
  14. vehicle:
  15. trace:
  16. api:
  17. base-url: ${VEHICLE_TRACE_API_URL:http://localhost:8080}
  18. # Feign 配置
  19. feign:
  20. client:
  21. config:
  22. default:
  23. connect-timeout: 5000
  24. read-timeout: 10000
  25. vehicle-trace-service:
  26. connect-timeout: 5000
  27. read-timeout: 10000
  28. logger-level: full
  29. httpclient:
  30. enabled: true
  31. max-connections: 200
  32. max-connections-per-route: 50