From a78d7d58a12397bc7808ba5a57834b3e52c282d4 Mon Sep 17 00:00:00 2001 From: csyw <710596924@qq.com> Date: Mon, 11 Jan 2021 00:27:24 +0800 Subject: [PATCH] update application-demo.yml. --- application-demo.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/application-demo.yml b/application-demo.yml index 89dda65..318623e 100644 --- a/application-demo.yml +++ b/application-demo.yml @@ -6,7 +6,7 @@ spring: datasource: name: turing username: root - password: 123456 + password: root # 使用druid数据源 type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.jdbc.Driver @@ -25,21 +25,21 @@ spring: poolPreparedStatements: true maxOpenPreparedStatements: 20 redis: - host: host - password: Turing2018 - port: 6379 + host: 127.0.0.1 + password: sunon + port: 16379 database: 0 elasticsearch: - cluster-name: cluster-name - cluster-nodes: host:9300 + cluster-name: elasticsearch + cluster-nodes: 127.0.0.1:9300 rabbitmq: - host: host - port: 5672 + host: 127.0.0.1 + port: 15672 username: rabbitmq - password: 123456 + password: rabbitmq123 template: retry: # 重试 enabled: true -- Gitee