From b07af1bad6a020c639241e5eac925cbb61582778 Mon Sep 17 00:00:00 2001 From: feige <791364011@qq.com> Date: 星期一, 21 七月 2025 09:30:45 +0800 Subject: [PATCH] 增加了目录管理,替换了mybatis --- ruoyi-common/pom.xml | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/ruoyi-common/pom.xml b/ruoyi-common/pom.xml index 72d888f..38f3dcc 100644 --- a/ruoyi-common/pom.xml +++ b/ruoyi-common/pom.xml @@ -17,6 +17,12 @@ <dependencies> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-boot-starter</artifactId> + <version>3.5.2</version> + </dependency> + <!-- Spring妗嗘灦鍩烘湰鐨勬牳蹇冨伐鍏� --> <dependency> <groupId>org.springframework</groupId> @@ -39,6 +45,17 @@ <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> + <exclusions> + <exclusion> + <groupId>org.mybatis</groupId> + <artifactId>mybatis</artifactId> + </exclusion> + <exclusion> + <artifactId>mybatis-spring</artifactId> + <groupId>org.mybatis</groupId> + </exclusion> + </exclusions> + </dependency> <!-- 鑷畾涔夐獙璇佹敞瑙� --> @@ -118,6 +135,12 @@ <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-annotation</artifactId> + <version>3.5.5</version> + <scope>compile</scope> + </dependency> </dependencies> -- Gitblit v1.9.1