application-test.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. spring:
  2. main:
  3. allow-circular-references: true
  4. datasource:
  5. dynamic:
  6. druid:
  7. initial-size: 2
  8. max-active: 20
  9. min-idle: 2
  10. primary: freight
  11. datasource:
  12. freight:
  13. driver-class-name: com.mysql.cj.jdbc.Driver
  14. url: jdbc:mysql://10.10.10.221:3306/freight?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
  15. username: freight
  16. password: freight
  17. kll:
  18. driver-class-name: com.mysql.cj.jdbc.Driver
  19. url: jdbc:mysql://10.10.10.221:3306/kll?useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
  20. username: kll
  21. password: kll
  22. saas:
  23. driver-class-name: com.mysql.cj.jdbc.Driver
  24. url: jdbc:mysql://10.10.10.221:3306/saas?useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
  25. username: saas
  26. password: saas
  27. # data:
  28. # redis:
  29. # host: 10.10.10.221
  30. # password: test
  31. # port: 6379
  32. # database: 13
  33. # lettuce:
  34. # pool:
  35. # enabled: true
  36. # max-active: 8
  37. # max-idle: 16
  38. # min-idle: 1
  39. # 日志级别
  40. logging:
  41. level:
  42. root: debug
  43. # mybatis-plus 打印sql
  44. mybatis-plus:
  45. configuration:
  46. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  47. # 支付中心 地址
  48. payCenter:
  49. address: http://10.10.10.223:9805
  50. #轮循任务 间隔时长(秒)
  51. job:
  52. sleep: 5
  53. enable: false