From 9551f322f02cf8802a514ddfd8fb8e0f6a6b436d Mon Sep 17 00:00:00 2001 From: ovo Date: Tue, 17 Dec 2024 14:47:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=9B=BE=E4=B9=A6=E5=88=9D=E6=AD=A5):=20?= =?UTF-8?q?=E5=9B=BE=E4=B9=A6=E5=88=9D=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 图书初步 --- src/main/resources/application.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 89b3521..6bf4b0b 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -15,13 +15,13 @@ spring: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai username: root - password: root + password: 123456 # Redis配置 data: redis: host: localhost - port: 6379 + port: 6380 password: 123456 # 如果有密码,请设置 database: 8 timeout: 10000 @@ -59,16 +59,16 @@ spring: - org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration # MyBatis-Plus配置 - mybatis-plus: - global-config: - db-config: - id-type: auto - logic-delete-field: deleted - logic-delete-value: 1 - logic-not-delete-value: 0 - configuration: - map-underscore-to-camel-case: true - log-impl: org.apache.ibatis.logging.stdout.StdOutImpl +mybatis-plus: + global-config: + db-config: + id-type: auto + logic-delete-field: deleted + logic-delete-value: 1 + logic-not-delete-value: 0 + configuration: + map-underscore-to-camel-case: true + log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # JWT配置 jwt: