bootstrap.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. api.version: api/v1/truckTms
  2. spring:
  3. profiles:
  4. include: ${SPRING_PROFILES:dev}
  5. jackson:
  6. date-format: yyyy-MM-dd HH:mm:ss
  7. time-zone: GMT+8
  8. # serialization: {WRITE_DATES_AS_TIMESTAMPS: true}
  9. messages:
  10. basename: message
  11. encoding: UTF-8
  12. mvc:
  13. static-path-pattern:
  14. #feign设置
  15. openfeign:
  16. ColumnDataFeign:
  17. url: ${COLUMNDATAFEIGN_URL:localhost:8083}
  18. BmsShipFeign:
  19. url: ${BMSSHIPFEIGN_URL:localhost:8078}
  20. BmsTruckFeign:
  21. url: ${BMSTRUCKFEIGN_URL:localhost:8076}
  22. WmsBoundFeign:
  23. url: ${WMSHBOUNDFEIGN_URL:localhost:8070}
  24. #eureka设置
  25. eureka:
  26. client:
  27. service-url:
  28. defaultZone: http://root:root@discovery.steerinfo.com/eureka/
  29. registerWithEureka:
  30. false
  31. fetchRegistry:
  32. false
  33. genxml:
  34. pth: com/a
  35. cache:
  36. level: 2
  37. redis:
  38. host: 10.10.50.28
  39. port: 6379
  40. pwd: 123456
  41. project:
  42. prefix: sysmanage
  43. pool:
  44. maxTotal: 8
  45. maxWaitMillis: 1000
  46. maxIdle: 8
  47. cache:
  48. time: 864000000
  49. database: 0
  50. mybatis:
  51. type-aliases-package: com.steerinfo.dil.model
  52. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  53. configuration:
  54. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  55. mapUnderscoreToCamelCase: true
  56. call-setters-on-nulls: true
  57. server:
  58. port: 8088