From 59b9376070522038963d10dc48f32a2770d99426 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 16 七月 2025 10:30:00 +0800 Subject: [PATCH] 添加模块,解决服务启动报错 --- pom.xml | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 46 insertions(+), 1 deletions(-) diff --git a/pom.xml b/pom.xml index 6bfbb85..3ad71d4 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ <tobato.version>1.27.2</tobato.version> <kaptcha.version>2.3.3</kaptcha.version> <pagehelper.boot.version>2.0.0</pagehelper.boot.version> - <druid.version>1.2.23</druid.version> + <druid.version>1.2.25</druid.version> <dynamic-ds.version>4.3.1</dynamic-ds.version> <commons.io.version>2.19.0</commons.io.version> <velocity.version>2.3</velocity.version> @@ -111,6 +111,34 @@ <version>${tomcat.version}</version> </dependency> + <!-- pagehelper 鍒嗛〉鎻掍欢 --> + <dependency> + <groupId>com.github.pagehelper</groupId> + <artifactId>pagehelper-spring-boot-starter</artifactId> + <version>${pagehelper.boot.version}</version> + </dependency> + + <!-- io甯哥敤宸ュ叿绫� --> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>${commons.io.version}</version> + </dependency> + + <!-- excel宸ュ叿 --> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>${poi.version}</version> + </dependency> + + <!-- 浠g爜鐢熸垚浣跨敤妯℃澘 --> + <dependency> + <groupId>org.apache.velocity</groupId> + <artifactId>velocity-engine-core</artifactId> + <version>${velocity.version}</version> + </dependency> + <!-- JSON 瑙f瀽鍣ㄥ拰鐢熸垚鍣� --> <dependency> <groupId>com.alibaba.fastjson2</groupId> @@ -118,12 +146,29 @@ <version>${fastjson.version}</version> </dependency> + <!-- JWT --> + <dependency> + <groupId>io.jsonwebtoken</groupId> + <artifactId>jjwt</artifactId> + <version>${jjwt.version}</version> + </dependency> + + <!-- 绾跨▼浼犻�掑�� --> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>transmittable-thread-local</artifactId> + <version>${transmittable-thread-local.version}</version> + </dependency> </dependencies> </dependencyManagement> <modules> + <module>se-common</module> <module>se-gateway</module> <module>se-system</module> + <module>se-collect</module> + <module>se-discover</module> + <module>se-publish</module> </modules> <packaging>pom</packaging> -- Gitblit v1.9.3