bootstrap.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. api.version: api/v1/trainTms
  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:paas-discovery-test.steerinfo.com}:${EUREKA_PORT:80}/eureka/
  19. #feign设置
  20. openfeign:
  21. ESFeign:
  22. url: ${ESFEIGN_URL:localhost:8089}
  23. ColumnDataFeign:
  24. url: ${COLUMNDATAFEIGN_URL:192.168.1.102:8083}
  25. WmsBoundFeign:
  26. url: ${WMSHBOUNDFEIGN_URL:localhost:8070}
  27. genxml:
  28. pth: com/a
  29. cache:
  30. level: 2
  31. redis:
  32. host: 10.10.50.28
  33. port: 6379
  34. pwd: 123456
  35. project:
  36. prefix: sysmanage
  37. pool:
  38. maxTotal: 8
  39. maxWaitMillis: 1000
  40. maxIdle: 8
  41. cache:
  42. time: 864000000
  43. database: 0
  44. mybatis:
  45. type-aliases-package: com.steerinfo.dil.model
  46. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  47. configuration:
  48. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  49. mapUnderscoreToCamelCase: true
  50. call-setters-on-nulls: true
  51. server:
  52. port: 8086