application-test.yml 997 B

123456789101112131415161718192021222324252627282930313233
  1. spring:
  2. datasource:
  3. url: jdbc:mysql://192.168.1.139:3306/qqflowengine?useUnicode=true&characterEncoding=UTF-8&connectionCollation=utf8mb4_unicode_ci&serverTimezone=Asia/Shanghai
  4. driver-class-name: com.mysql.cj.jdbc.Driver
  5. username: qqflowengine
  6. password: 123456
  7. data:
  8. redis:
  9. host: 192.168.1.139
  10. port: 6379
  11. password: redis123456
  12. mybatis-plus:
  13. mapper-locations: classpath*:/mapper/**/*.xml
  14. configuration:
  15. map-underscore-to-camel-case: true
  16. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 去掉,使用默认 SLF4J,只输出 SQL 不输出结果
  17. global-config:
  18. db-config:
  19. id-type: auto
  20. logic-delete-field: deleted
  21. logic-delete-value: 1
  22. logic-not-delete-value: 0
  23. jwt:
  24. secret: qqflow-test-secret-key-2024-min-32chars
  25. expiration: 86400000
  26. logging:
  27. level:
  28. root: info
  29. com.qqflow.engine: debug
  30. com.qqflow.engine.**.mapper: debug # MyBatis mapper SQL 语句日志(不输出结果集)