There was an error while loading. Please reload this page.
1 parent 76afcf7 commit dd661e3Copy full SHA for dd661e3
spring-boot-demo-activiti/src/main/resources/application.yml
@@ -1,5 +1,13 @@
1
spring:
2
- activiti:
3
- check-process-definitions: false
4
- db-history-used: true
5
- history-level: full
+ datasource:
+ url: jdbc:mysql://localhost:3306/spring-boot-demo
+ username: root
+ password: root
6
+ hikari:
7
+ data-source-properties:
8
+ useSSL: false
9
+ serverTimezone: GMT+8
10
+ useUnicode: true
11
+ characterEncoding: utf8
12
+ # 这个必须要加,否则 Activiti 自动建表会失败
13
+ nullCatalogMeansCurrent: true
0 commit comments