| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- server:
- port: 8080
- spring:
- application:
- name: qqflowengine-backend
- datasource:
- url: jdbc:mysql://localhost:3306/qqflowengine?useUnicode=true&characterEncoding=utf8mb4&serverTimezone=Asia/Shanghai&createDatabaseIfNotExist=true
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: root
- sql:
- init:
- mode: always
- schema-locations: classpath:schema-dev.sql
- data-locations: classpath:data-dev.sql
- redis:
- host: localhost
- port: 6379
- password:
- database: 0
- timeout: 10s
- lettuce:
- pool:
- max-active: 8
- max-idle: 8
- min-idle: 0
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml
- type-aliases-package: com.qqflow.engine.**.po
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: true
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- global-config:
- db-config:
- id-type: auto
- logic-delete-field: deleted
- logic-delete-value: 1
- logic-not-delete-value: 0
- jwt:
- secret: qqflow-engine-secret-key-2024-very-long-and-secure
- expiration: 86400000
- header: Authorization
- prefix: Bearer
- logging:
- level:
- com.qqflow.engine: debug
|