bootstrap.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. WMSFeign:
  25. url: ${WMSHBOUNDFEIGN_URL:localhost:8093}
  26. OmsFeign:
  27. url: ${OMSFEIGN_URL:localhost:8095}
  28. JoinFeign:
  29. url: ${JOINFEIGN_URL:localhost:8066}
  30. #eureka设置
  31. eureka:
  32. client:
  33. service-url:
  34. defaultZone: http://root:root@${EUREKA_HOST:172.16.33.161}:${EUREKA_PORT:8061}/eureka/
  35. instance:
  36. prefer-ip-address: true
  37. status-page-url: http://${spring.cloud.client.ip-address}:${server.port}/swagger-ui.html#/
  38. instance-id: ${spring.cloud.client.ip-address}:${server.port}
  39. genxml:
  40. pth: com/a
  41. cache:
  42. level: 2
  43. redis:
  44. host: 10.10.50.28
  45. port: 6379
  46. pwd: 123456
  47. project:
  48. prefix: sysmanage
  49. pool:
  50. maxTotal: 8
  51. maxWaitMillis: 1000
  52. maxIdle: 8
  53. cache:
  54. time: 864000000
  55. database: 0
  56. mybatis:
  57. type-aliases-package: com.steerinfo.dil.model
  58. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  59. configuration:
  60. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  61. mapUnderscoreToCamelCase: true
  62. call-setters-on-nulls: true
  63. server:
  64. port: 8088