bootstrap.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. api.version: api/v1
  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. #eureka设置
  15. eureka:
  16. client:
  17. service-url:
  18. defaultZone: http://root:root@discovery.steerinfo.com/eureka/
  19. openfeign:
  20. ColumnDataFeign:
  21. url: ${COLUMNDATAFEIGN_URL:localhost:8083}
  22. AmsFeign:
  23. url: ${AMSFEIGN_URL:localhost:8079}
  24. BmsshipFeign:
  25. url: ${BMSSHIPFEIGN_URL:localhost:8078}
  26. BmstrainFeign:
  27. url: ${BMSTRAINFEIGN_URL:localhost:8077}
  28. BmstruckFeign:
  29. url: ${BMSTRUCKFEIGN_URL:localhost:8076}
  30. QmsTruckFeign:
  31. url: ${QMSTRUCKFEIGN_URL:localhost:8087}
  32. TmsTrainFeign:
  33. url: ${TMSTRAINFEIGN_URL:localhost:8086}
  34. TmsTruckFeign:
  35. url: ${TMSTRUCKFEIGN_URL:localhost:8088}
  36. TmsshipFeign:
  37. url: ${TMSSHIPFEIGN_URL:localhost:8090}
  38. WMSHFeign:
  39. url: ${WMSHFEIGN_URL:localhost:8084}
  40. WMSFeign:
  41. url: ${WMSFEIGN_URL:localhost:8093}
  42. QMSFeign:
  43. url: ${QMSFEIGN_URL:localhost:8082}
  44. genxml:
  45. pth: com/a
  46. cache:
  47. level: 2
  48. redis:
  49. host: 10.10.50.28
  50. port: 6379
  51. pwd: 123456
  52. project:
  53. prefix: sysmanage
  54. pool:
  55. maxTotal: 8
  56. maxWaitMillis: 1000
  57. maxIdle: 8
  58. cache:
  59. time: 864000000
  60. database: 0
  61. mybatis:
  62. type-aliases-package: com.steerinfo.dil.model
  63. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  64. configuration:
  65. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  66. mapUnderscoreToCamelCase: true
  67. call-setters-on-nulls: true
  68. server:
  69. port: 8099