From dd661e30a9e6f733e497b68be66c4434276434e6 Mon Sep 17 00:00:00 2001 From: "Yangkai.Shen" <237497819@qq.com> Date: Sun, 30 Jun 2019 13:02:35 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20activiti=20=E5=BB=BA=E8=A1=A8=E4=B8=8D?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=88=9B=E5=BB=BAhistory=E8=A1=A8=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=EF=BC=8C=E4=BF=AE=E6=94=B9jdbc=E8=BF=9E?= =?UTF-8?q?=E6=8E=A5=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/spring-boot-demo-activiti/src/main/resources/application.yml b/spring-boot-demo-activiti/src/main/resources/application.yml index f14bfc0..fb88c65 100644 --- a/spring-boot-demo-activiti/src/main/resources/application.yml +++ b/spring-boot-demo-activiti/src/main/resources/application.yml @@ -1,5 +1,13 @@ spring: - activiti: - check-process-definitions: false - db-history-used: true - history-level: full \ No newline at end of file + datasource: + url: jdbc:mysql://localhost:3306/spring-boot-demo + username: root + password: root + hikari: + data-source-properties: + useSSL: false + serverTimezone: GMT+8 + useUnicode: true + characterEncoding: utf8 + # 这个必须要加,否则 Activiti 自动建表会失败 + nullCatalogMeansCurrent: true \ No newline at end of file