bootstrap.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. api.version: api/v1/join
  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. 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:localhost:8083}
  26. genxml:
  27. pth: com/a
  28. cache:
  29. level: 2
  30. redis:
  31. host: 10.10.50.28
  32. port: 6379
  33. pwd: 123456
  34. project:
  35. prefix: sysmanage
  36. pool:
  37. maxTotal: 8
  38. maxWaitMillis: 1000
  39. maxIdle: 8
  40. cache:
  41. time: 864000000
  42. database: 0
  43. mybatis:
  44. type-aliases-package: com.steerinfo.dil.model
  45. mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
  46. configuration:
  47. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  48. mapUnderscoreToCamelCase: true
  49. call-setters-on-nulls: true
  50. server:
  51. port: 8066