From 5a106c938e39d1f82339c122c547434c3d6a5685 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 11 四月 2024 18:22:41 +0800 Subject: [PATCH] 分页插件依赖更换 --- pom.xml | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 31104c8..c345219 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,7 @@ <fastjson.version>2.0.43</fastjson.version> <commons.lang.version>2.6</commons.lang.version> <druid.version>1.2.20</druid.version> - <pagehelper.version>1.3.0</pagehelper.version> + <pagehelper.boot.version>1.4.6</pagehelper.boot.version> <aliyun.sdk.oss.version>3.10.2</aliyun.sdk.oss.version> <knife4j.version>3.0.2</knife4j.version> <aspectj.version>1.9.4</aspectj.version> @@ -171,14 +171,19 @@ <version>${druid.version}</version> </dependency> + <!-- pagehelper 鍒嗛〉鎻掍欢 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> - <version>${pagehelper.version}</version> + <version>${pagehelper.boot.version}</version> <exclusions> <exclusion> - <artifactId>jsqlparser</artifactId> - <groupId>com.github.jsqlparser</groupId> + <groupId>org.mybatis</groupId> + <artifactId>mybatis</artifactId> + </exclusion> + <exclusion> + <groupId>org.mybatis</groupId> + <artifactId>mybatis-spring</artifactId> </exclusion> </exclusions> </dependency> -- Gitblit v1.8.0