bootstrap.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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@${EUREKA_HOST:172.16.33.161}:${EUREKA_PORT:8061}/eureka/
  19. instance:
  20. prefer-ip-address: true
  21. status-page-url: http://${spring.cloud.client.ip-address}:${server.port}/swagger-ui.html#/
  22. instance-id: ${spring.cloud.client.ip-address}:${server.port}
  23. openfeign:
  24. ColumnDataFeign:
  25. url: ${COLUMNDATAFEIGN_URL:172.16.33.161:8083}
  26. AmsFeign:
  27. url: ${AMSFEIGN_URL:localhost:8079}
  28. BmsshipFeign:
  29. url: ${BMSSHIPFEIGN_URL:localhost:8078}
  30. BmstrainFeign:
  31. url: ${BMSTRAINFEIGN_URL:localhost:8077}
  32. BmstruckFeign:
  33. url: ${BMSTRUCKFEIGN_URL:localhost:8076}
  34. QmsTruckFeign:
  35. url: ${QMSTRUCKFEIGN_URL:localhost:8087}
  36. TmsTrainFeign:
  37. url: ${TMSTRAINFEIGN_URL:localhost:8086}
  38. TmsTruckFeign:
  39. url: ${TMSTRUCKFEIGN_URL:localhost:8088}
  40. TmsshipFeign:
  41. url: ${TMSSHIPFEIGN_URL:localhost:8090}
  42. WMSHFeign:
  43. url: ${WMSHFEIGN_URL:172.16.33.161:8070}
  44. WMSFeign:
  45. url: ${WMSFEIGN_URL:localhost:8093}
  46. OMSFeign:
  47. url: ${OMSFEIGN_URL:localhost:8095}
  48. RmsFeign:
  49. url: ${RMSFEIGN_HRL:localhost:8060}
  50. genxml:
  51. pth: com/a
  52. cache:
  53. level: 2
  54. redis:
  55. host: 10.10.50.28
  56. port: 6379
  57. pwd: 123456
  58. project:
  59. prefix: sysmanage
  60. pool:
  61. maxTotal: 8
  62. maxWaitMillis: 1000
  63. maxIdle: 8
  64. cache:
  65. time: 864000000
  66. database: 0
  67. mybatis:
  68. type-aliases-package: com.steerinfo.dil.model
  69. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  70. configuration:
  71. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  72. mapUnderscoreToCamelCase: true
  73. call-setters-on-nulls: true
  74. server:
  75. port: 8099