bootstrap.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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:8099}
  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. OMSFeign:
  45. url: ${OMSFEIGN_URL:localhost:8095}
  46. genxml:
  47. pth: com/a
  48. cache:
  49. level: 2
  50. redis:
  51. host: 10.10.50.28
  52. port: 6379
  53. pwd: 123456
  54. project:
  55. prefix: sysmanage
  56. pool:
  57. maxTotal: 8
  58. maxWaitMillis: 1000
  59. maxIdle: 8
  60. cache:
  61. time: 864000000
  62. database: 0
  63. mybatis:
  64. type-aliases-package: com.steerinfo.dil.model
  65. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  66. configuration:
  67. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  68. mapUnderscoreToCamelCase: true
  69. call-setters-on-nulls: true
  70. server:
  71. port: 8080