bootstrap.yml 1.8 KB

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