From 3721cd85a1bc44adfe18060501530f697d08e665 Mon Sep 17 00:00:00 2001 From: "yadong.zhang" Date: Fri, 27 Aug 2021 19:59:08 +0800 Subject: [PATCH] =?UTF-8?q?:wrench:=20=E4=BF=AE=E6=94=B9=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6=EF=BC=8C=E5=88=A0=E9=99=A4=20application-cen?= =?UTF-8?q?ter-dev.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config/application-center-dev.yml | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 blog-core/src/main/resources/config/application-center-dev.yml diff --git a/blog-core/src/main/resources/config/application-center-dev.yml b/blog-core/src/main/resources/config/application-center-dev.yml deleted file mode 100644 index fdf0261..0000000 --- a/blog-core/src/main/resources/config/application-center-dev.yml +++ /dev/null @@ -1,26 +0,0 @@ -spring: - profiles: - include: [center] - ####### database Config ####### - datasource: - druid: - connection-init-sqls: set names utf8mb4 - driver-class-name: com.mysql.jdbc.Driver - type: com.alibaba.druid.pool.DruidDataSource - url: jdbc:mysql://${ONEBLOG_DATASOURCE_HOST:127.0.0.1}:${ONEBLOG_DATASOURCE_PORT:3306}/${ONEBLOG_DATASOURCE_DATABASE_NAME:dblog}?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false&allowPublicKeyRetrieval=true - username: ${ONEBLOG_DATASOURCE_USERNAME:root} - password: ${ONEBLOG_DATASOURCE_PASSWORD:root} - - ####### Redis Config ####### - redis: - database: ${ONEBLOG_REDIS_DATABASE_INDEX:1} - # Redis服务器地址 - host: ${ONEBLOG_REDIS_HOST:127.0.0.1} - # Redis服务器连接端口 - port: ${ONEBLOG_REDIS_PORT:6379} - # Redis服务器连接密码(默认为空) - password: ${ONEBLOG_REDIS_PASSWORD:123456ZHYD} - - ####### redis缓存服务配置 ####### - session: - store-type: redis -- GitLab