bootstrap.yml 933 B

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