bootstrap.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. server:
  2. port: 10100
  3. spring:
  4. application:
  5. name: sckw-ng-transport
  6. profiles:
  7. # active: ${DEPLOY_MODE:dev}
  8. active: @profiles.active@
  9. main:
  10. allow-bean-definition-overriding: true
  11. allow-circular-references: true
  12. # 车辆轨迹服务配置
  13. vehicle:
  14. trace:
  15. api:
  16. base-url: ${VEHICLE_TRACE_API_URL:http://localhost:8080}
  17. # Feign 配置
  18. feign:
  19. client:
  20. config:
  21. default:
  22. connect-timeout: 5000
  23. read-timeout: 10000
  24. vehicle-trace-service:
  25. connect-timeout: 5000
  26. read-timeout: 10000
  27. logger-level: full
  28. httpclient:
  29. enabled: true
  30. max-connections: 200
  31. max-connections-per-route: 50
  32. mybatis-plus:
  33. configuration:
  34. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  35. logging:
  36. level:
  37. root: info
  38. com.sckw.payment: debug
  39. # SpringDoc OpenAPI 配置
  40. springdoc:
  41. swagger-ui:
  42. path: /swagger-ui.html
  43. tags-sorter: alpha
  44. operations-sorter: alpha
  45. api-docs:
  46. path: /v3/api-docs
  47. show-actuator: true
  48. cache:
  49. disabled: true