From 64a7db72a3792e455280bc8c4ded83b43c04605a Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期六, 27 四月 2024 18:43:07 +0800 Subject: [PATCH] 1、修改DownloadFileCtrl中的文件名称转码方式; 2、用EasyExcel实现标识类二维码导出excel文件并下载功能。 --- pms-parent/pms-common/pom.xml | 31 ++++++++++++++++++++++++++++++- 1 files changed, 30 insertions(+), 1 deletions(-) diff --git a/pms-parent/pms-common/pom.xml b/pms-parent/pms-common/pom.xml index e5e99a3..2797a49 100644 --- a/pms-parent/pms-common/pom.xml +++ b/pms-parent/pms-common/pom.xml @@ -105,7 +105,6 @@ <artifactId>mybatis-spring</artifactId> <version>${mybatis-spring.version}</version> </dependency> - <!-- 闃块噷fastjson --> <dependency> <groupId>cglib</groupId> @@ -121,6 +120,12 @@ <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2-extension-spring6</artifactId> <version>${fastjson2.version}</version> + </dependency> + <!-- 闃块噷EasyExcel --> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>easyexcel</artifactId> + <version>${easyexcel.version}</version> </dependency> <!-- vo po杞崲 --> <dependency> @@ -144,6 +149,30 @@ <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> </exclusion> + <exclusion> + <groupId>org.yaml</groupId> + <artifactId>snakeyaml</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </exclusion> + <exclusion> + <groupId>com.alibaba.spring</groupId> + <artifactId>spring-context-support</artifactId> + </exclusion> + <exclusion> + <groupId>com.alibaba.fastjson2</groupId> + <artifactId>fastjson2</artifactId> + </exclusion> + <exclusion> + <groupId>com.alibaba</groupId> + <artifactId>hessian-lite</artifactId> + </exclusion> + <exclusion> + <groupId>org.javassist</groupId> + <artifactId>javassist</artifactId> + </exclusion> </exclusions> </dependency> -- Gitblit v1.8.0