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