From e202c103368500f26a978baecd66fa65a4e82cfe Mon Sep 17 00:00:00 2001 From: Bunny <1319900154@qq.com> Date: Sat, 27 Jul 2024 22:46:47 +0800 Subject: [PATCH] =?UTF-8?q?=20feat(=E4=BF=AE=E6=94=B9):=20:art:=20?= =?UTF-8?q?=E6=B6=88=E9=99=A4=E6=89=80=E6=9C=89=E5=8C=85=E7=9A=84=E9=BB=84?= =?UTF-8?q?=E8=89=B2=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/pom.xml | 9 +++++++++ pom.xml | 7 +++++++ service/pom.xml | 14 ++++++++------ .../java/cn/bunny/service/ServiceApplication.java | 1 - 4 files changed, 24 insertions(+), 7 deletions(-) diff --git a/module/pom.xml b/module/pom.xml index 4ea3077..cc81d26 100644 --- a/module/pom.xml +++ b/module/pom.xml @@ -31,5 +31,14 @@ service-utils 0.0.1-SNAPSHOT + + com.google.protobuf + protobuf-java + 4.27.2 + + + org.springframework.boot + spring-boot-starter-web + diff --git a/pom.xml b/pom.xml index b87e949..db56230 100644 --- a/pom.xml +++ b/pom.xml @@ -41,6 +41,7 @@ 2.2 3.1 5.1.0 + 4.3.1 @@ -79,6 +80,12 @@ HikariCP ${HikariCP.version} + + + com.baomidou + dynamic-datasource-spring-boot3-starter + ${dynamic.datasource.version} + com.github.xiaoymin diff --git a/service/pom.xml b/service/pom.xml index 01add39..60266e8 100644 --- a/service/pom.xml +++ b/service/pom.xml @@ -22,24 +22,27 @@ cn.bunny - dao + service-utils 0.0.1-SNAPSHOT - cn.bunny spring-security 0.0.1-SNAPSHOT - + + + org.springframework.boot + spring-boot-starter-security + org.springframework.security spring-security-test - + org.springframework.boot - spring-boot-starter-security + spring-boot-starter-web @@ -71,7 +74,6 @@ com.baomidou dynamic-datasource-spring-boot3-starter - 4.3.1 diff --git a/service/src/main/java/cn/bunny/service/ServiceApplication.java b/service/src/main/java/cn/bunny/service/ServiceApplication.java index 559b8c6..c9022ce 100644 --- a/service/src/main/java/cn/bunny/service/ServiceApplication.java +++ b/service/src/main/java/cn/bunny/service/ServiceApplication.java @@ -18,7 +18,6 @@ import org.springframework.transaction.annotation.EnableTransactionManagement; @Slf4j public class ServiceApplication { public static void main(String[] args) { - log.info("ServiceApplication启动..."); SpringApplication.run(ServiceApplication.class, args); } }