From 0a419781bac9a9fc873a8d3ce93de7902cd88a1f Mon Sep 17 00:00:00 2001 From: daniel_dell Date: Sat, 21 Sep 2019 15:45:14 +0800 Subject: [PATCH 1/2] modify --- demo-project-ui/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-project-ui/pom.xml b/demo-project-ui/pom.xml index 4110472b..e58d764c 100644 --- a/demo-project-ui/pom.xml +++ b/demo-project-ui/pom.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> com.dstz - agilebpm-spring-boot + agilebpm-spring-boot-parent 1.2.3 4.0.0 -- Gitee From 0dc912f4a70b60e922cf6a80ddf607b8ef19f5b1 Mon Sep 17 00:00:00 2001 From: daniel_dell Date: Sun, 22 Sep 2019 20:31:22 +0800 Subject: [PATCH 2/2] =?UTF-8?q?application.yml,=20=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E9=85=8D=E7=BD=AE=E6=9B=B4=E6=94=B9=EF=BC=8C=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/agilebpm-app-simples/src/main/resources/application.yml b/agilebpm-app-simples/src/main/resources/application.yml index cb48c5c3..59bca8d8 100644 --- a/agilebpm-app-simples/src/main/resources/application.yml +++ b/agilebpm-app-simples/src/main/resources/application.yml @@ -1,9 +1,12 @@ spring: datasource: driver-class-name: com.mysql.jdbc.Driver - url: jdbc:mysql://47.106.140.247:3306/angular?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false - username: public - password: public +# url: jdbc:mysql://47.106.140.247:3306/angular?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false +# username: public +# password: public + url: jdbc:mysql://localhost:3306/agile_bpm?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false&serverTimezone=UTC + username: root + password: 123456 dbType: mysql activemq: broker-url: tcp://127.0.0.1:61616 @@ -11,9 +14,10 @@ spring: packages: trust-all: true redis: - host: 47.106.139.29 +# host: 47.106.139.29 + host: localhost port: 6379 - password: agilebpm_redis_2019 +# password: agilebpm_redis_2019 database: 9 -- Gitee