From 0feb0db66ddb4573dd5c6cc7128277b66e5400af Mon Sep 17 00:00:00 2001 From: xingjinshuang <xingjs@qq.com> Date: 星期二, 24 十二月 2024 16:22:24 +0800 Subject: [PATCH] @xingjs@20241224@添加解析CSV文件相关实体类、方法;添加文件上传配置;添加开发文件上传相关工具类 --- pom.xml | 36 ++++++++++++++++++++++++++++++++++-- 1 files changed, 34 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 872fdee..5af1e67 100644 --- a/pom.xml +++ b/pom.xml @@ -176,11 +176,31 @@ <version>3.3.1</version> </dependency> - <!-- SQLite JDBC --> + <!--1-sqlite鐩稿叧--> + <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc --> <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> - <version>3.42.0.0</version> <!-- 鏍规嵁闇�瑕佽皟鏁寸増鏈� --> + <version>3.45.1.0</version> + </dependency> + <!--2-sqlite 鏂硅█--> + <dependency> + <groupId>com.zsoltfabok</groupId> + <artifactId>sqlite-dialect</artifactId> + <version>1.0</version> + </dependency> + + <!-- 瀵规暟鎹簱鎿嶄綔鐨勭粺璁� --> + <dependency> + <groupId>p6spy</groupId> + <artifactId>p6spy</artifactId> + <version>3.9.1</version> + </dependency> + <!--澶氭暟鎹簮--> + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>dynamic-datasource-spring-boot-starter</artifactId> + <version>3.5.2</version> </dependency> <!-- Apache Commons CSV (鍙��) --> @@ -189,6 +209,18 @@ <artifactId>commons-csv</artifactId> <version>1.8</version> <!-- 鏍规嵁闇�瑕佽皟鏁寸増鏈� --> </dependency> + <!-- io甯哥敤宸ュ叿绫� --> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.16.1</version> + </dependency> + <!-- 鏂囦欢涓婁紶宸ュ叿绫� --> + <dependency> + <groupId>commons-fileupload</groupId> + <artifactId>commons-fileupload</artifactId> + <version>1.5</version> + </dependency> </dependencies> -- Gitblit v1.9.3