From 87bb5030f7e20e0066241345a7f4ea89be8b5338 Mon Sep 17 00:00:00 2001 From: Joshi <3040996759@qq.com> Date: Sat, 23 May 2026 16:10:54 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=BF=9E=E6=8E=A5=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将数据库连接地址从 localhost 修改为远程服务器地址 67.209.178.202 - 更新数据库连接密码为 123456 - 保持日志开关配置不变 --- demo4/src/main/resources/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo4/src/main/resources/application.yml b/demo4/src/main/resources/application.yml index 176f72c..11e4764 100644 --- a/demo4/src/main/resources/application.yml +++ b/demo4/src/main/resources/application.yml @@ -5,7 +5,7 @@ server: spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://localhost:3306/demo_news?characterEncoding=UTF-8&&serverTimezone=GMT + url: jdbc:mysql://67.209.178.202:3306/demo_news?characterEncoding=UTF-8&&serverTimezone=GMT username: root password: 135827 type: com.alibaba.druid.pool.DruidDataSource @@ -59,4 +59,4 @@ sa-token: # token 风格(默认可取值:uuid、simple-uuid、random-32、random-64、random-128、tik) token-style: uuid # 是否输出操作日志 - is-log: true \ No newline at end of file + is-log: true