springboot使用Easy Excel导出列表数据为Excel

embedded/2025/1/13 18:33:10/

springboot使用Easy Excel导出列表数据为Excel

Easy Excel官网:https://easyexcel.opensource.alibaba.com/docs/current/quickstart/write
主要记录一下引入时候的pom,直接引入会依赖冲突

解决方法:

<!-- 引入Easy Excel的依赖 --><dependency><groupId>com.alibaba</groupId><artifactId>easyexcel-core</artifactId><version>3.2.1</version><exclusions><exclusion><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId></exclusion><exclusion><groupId>org.apache.poi</groupId><artifactId>poi</artifactId></exclusion><exclusion><groupId>org.apache.poi</groupId><artifactId>poi-ooxml-schemas</artifactId></exclusion></exclusions></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>3.16</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>3.16</version></dependency>

实体:

package com.geofly.dataservicecenter.api.vo.ybtq;import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import org.springframework.format.annotation.DateTimeFormat;import java.util.Date;/*** @Description: 【工作量统计】-作业员工作量-列表返回vo** @Auther: yanghaoxing* @Date: 2025/1/8*/
@Getter
@Setter
@ApiModel("【工作量统计】-作业员工作量-列表返回vo")
@EqualsAndHashCode
public class YbStatisticsOperatorVo {@ExcelIgnore@ApiModelProperty("子任务主键")@TableId("pk_id")private String pkId;@ExcelIgnore@ApiModelProperty("任务ID")@TableField("fk_task_id")private String fkTaskId;@ExcelProperty("作业员Id")@ApiModelProperty("作业员Id")@ColumnWidth(35)@TableField("operator_id")private String operatorId;@ExcelIgnore@ApiModelProperty("行政区代码")@TableField("region_code")private String regionCode;@ExcelProperty("行政区名称")@ApiModelProperty("行政区名称")@TableField("region_name")private String regionName;@ExcelProperty("年度")@ApiModelProperty("后时相-年度")@TableField("after_year")private Integer afterYear;@ExcelProperty("季度")@ApiModelProperty("后时相-季度")@TableField("after_quarter")private Integer afterQuarter;@ExcelProperty("项目类型ID")@ApiModelProperty("项目类型ID(外键)")@ColumnWidth(35)@TableField("task_type")private String taskType;@ExcelProperty("项目负责人")@ApiModelProperty("项目负责人")@ColumnWidth(35)@TableField("leader")private String leader;@ExcelIgnore@ApiModelProperty("创建时间(开始时间)")@TableField("create_time")@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")private Date createTime;@ExcelIgnore@ApiModelProperty("更新时间(结束时间)")@TableField("update_time")@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")private Date updateTime;@ExcelProperty("状态")@ApiModelProperty("状态:0表示未完成,1表示已完成")@TableField("status")private int status;@ExcelProperty("工作区面积")@ApiModelProperty("工作区面积")private String workerArea;@ExcelProperty("指引图斑数量")@ApiModelProperty("指引图斑数量")@TableField("zy_count")private int zyCount;@ExcelProperty("图斑数量")@ApiModelProperty("提取图斑数量")@TableField("ysbhtb_count")private Integer ysbhtbCount;@ExcelProperty("一检员")@ApiModelProperty("一检质检员")@TableField("first_quality_inspector")private String firstQualityInspector;@ExcelProperty("合格率")@ApiModelProperty("一检合格率合,0~100")private int firstInspectionRate;@ExcelProperty("二检员")@ApiModelProperty("二检质检员")@TableField("second_quality_inspector")private String secondQualityInspector;@ExcelProperty("合格率")@ApiModelProperty("二检合格率合,0~100")private int secondInspectionRate;@ExcelProperty("成果质量")@ApiModelProperty("成果质量,-1:不通过,0未质检,1:合格,2:良好,3:优秀")@TableField("inspection_result")private int inspectionResult;}

java:

@ApiOperation(value = "【工作量统计】-作业员工作量-导出", notes = "export", produces = "application/octet-stream")@PostMapping("/statistics-operator-download")@OpLog("【样本集管理】-样本集导出")public void statisticsOperatorDownload(@RequestBody YbStatisticsOperatorParams params, HttpServletResponse response) throws Exception {// 设置分页参数,确保获取所有数据BasePage page = new BasePage();page.setPageNo(1);page.setPageSize(999999);params.setPage(page);// 根据参数获取所有作业员工作量数据IPage<YbStatisticsOperatorVo> allList = ybStatisticsOperator(params);// 设置响应头,指定文件为 Excel 文件response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");String fileName = "作业员工作量统计.xlsx";response.setHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(fileName, "UTF-8"));// 使用 EasyExcel 导出数据try {EasyExcel.write(response.getOutputStream(), YbStatisticsOperatorVo.class).sheet("作业员工作量").doWrite(allList.getRecords());} catch (Exception e) {e.printStackTrace();response.setContentType("application/json;charset=utf-8");response.getOutputStream().write(JSONUtil.toJsonStr(Result.error("导出失败!")).getBytes(StandardCharsets.UTF_8));}}

在这里插入图片描述
在这里插入图片描述

目前是测试导出,数据还没格式化


http://www.ppmy.cn/embedded/153627.html

相关文章

Linux 下 Vim 环境安装踩坑问题汇总及解决方法(重置版)

导航 安装教程导航 Mamba 及 Vim 安装问题参看本人博客&#xff1a;Mamba 环境安装踩坑问题汇总及解决方法&#xff08;初版&#xff09;Linux 下Mamba 及 Vim 安装问题参看本人博客&#xff1a;Mamba 环境安装踩坑问题汇总及解决方法&#xff08;重置版&#xff09;Windows …

[人工智能自学] Python包学习-numpy

由于我并非该专业&#xff0c;我在学习之前google了几个比较靠前的人工智能学习路径&#xff1a; https://github.com/tangyudi/Ai-Learn https://github.com/apachecn/ai-roadmap/blob/master/ai-union-201904/README.md https://marlous.github.io/2019/01/18/%E4%BA%BA%E5%B…

Kotlin语言的数据结构

Kotlin语言的数据结构 Kotlin是一种现代化的编程语言&#xff0c;它为开发者提供了许多便利的功能和工具&#xff0c;帮助他们更高效地开发应用程序。在Kotlin的生态中&#xff0c;数据结构是一个至关重要的部分&#xff0c;它影响着程序的性能、可维护性和可读性。本文将深入…

用JAVA实现人工智能:采用框架Spring AI Java

Spring AI 集成人工智能&#xff0c;为Java项目添加AI功能指南 本文主旨是用实际的可操作的代码&#xff0c;介绍Java怎么通过spring ai 接入大模型。 例子使用spring ai alibaba QWen千问api完成&#xff0c;你可以跑通以后换自己的实现。QWen目前有100万免费Token额度&…

opencv的NLM去噪算法

NLM&#xff08;Non-Local Means&#xff09;去噪算法是一种基于图像块&#xff08;patch&#xff09;相似性的去噪方法。其基本原理是&#xff1a; 图像块相似性&#xff1a;算法首先定义了一个搜索窗口&#xff08;search window&#xff09;&#xff0c;然后在该窗口内寻找…

zookeeper监听机制(Watcher机制)

文章目录 引言I zookeeper监听机制Watcher机制实现分布式的通知功能触发事件种类Watcher的三个过程II watch机制特点一次性触发事件封装event异步发送先注册再触发常见的通知状态和事件类型III 应用案例(Kafka)Kafka的消息模型Kafka在Zookeeper中保存的元数据Kafka 基于Contr…

cJson——序列化格式json和protobuf对比

cJson——序列化格式json和protobuf对比 1. 更小的消息体积2. 更快的序列化与反序列化速度3. 类型安全4. 向后和向前兼容性5. 更低的带宽消耗6. 高效的编码方式7. 易于跨语言支持8. 支持复杂的数据结构9. 更好的支持大型数据交换总结 Protocol Buffers (Protobuf) 和 JSON 都是…

vue2+electron项目搭建

一、vue2搭建 官方链接&#xff1a;https://cli.vuejs.org/zh/guide/installation.html 1、安装vue-cli npm install -g vue/cli # OR yarn global add vue/cli2、vue项目创建 vue create electron-vue-demo二、vue项目添加electron 安装插件 vue-cli-plugin-electron-bui…