欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot中使用JeecgBoot的Autopoi导出Excel的方法步骤

程序员文章站 2022-07-08 08:41:36
说到导出 excel,我们首先会想到 poi、jsxl 等,使用这些工具会显得笨重,学习难度大。今天学习使用 jeecgboot 中的 autopoi 导出 excel,底层基于 easypoi,使用...

说到导出 excel,我们首先会想到 poi、jsxl 等,使用这些工具会显得笨重,学习难度大。今天学习使用 jeecgboot 中的 autopoi 导出 excel,底层基于 easypoi,使用简单,还支持数据字典方式

一、开发前戏

1、引入 maven 依赖

<!-- autopoi excel工具类-->
<dependency>
  <groupid>org.jeecgframework</groupid>
  <artifactid>autopoi-web</artifactid>
  <version>1.1.1</version>
  <exclusions>
    <exclusion>
      <groupid>commons-codec</groupid>
      <artifactid>commons-codec</artifactid>
    </exclusion>
  </exclusions>
</dependency>

exclusions 是将 commons-codec 从 autopoi 中排除,避免冲突

2、切换 jeecg 镜像

以下代码放在 pom.xml 文件中的 parent 标签下面

<repositories>
<repository>
  <id>aliyun</id>
  <name>aliyun repository</name>
  <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  <snapshots>
    <enabled>false</enabled>
  </snapshots>
</repository>
<repository>
  <id>jeecg</id>
  <name>jeecg repository</name>
  <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  <snapshots>
    <enabled>false</enabled>
  </snapshots>
</repository>
</repositories>

可以看到,这里我们配置了 aliyun 的国内镜像,还配置了 jeecg 的镜像,这样方便我们下载依赖文件

3、导出工具类

我们把导出 excel 通用方法写在 excelutils.java 文件中

import org.jeecgframework.poi.excel.def.normalexcelconstants;
import org.jeecgframework.poi.excel.entity.exportparams;
import org.jeecgframework.poi.excel.view.jeecgentityexcelview;
import org.springframework.web.servlet.modelandview;

import java.util.list;

/**
 * 导出excel工具类
 *
 * @author lizhou
 */
public class excelutils {

  /**
   * 导出excel
   *
   * @param title   文件标题
   * @param clazz   实体类型
   * @param exportlist 导出数据
   * @param <t>
   * @return
   */
  public static <t> modelandview export(string title, class<t> clazz, list<t> exportlist) {
    modelandview mv = new modelandview(new jeecgentityexcelview());
    mv.addobject(normalexcelconstants.file_name, title);
    mv.addobject(normalexcelconstants.class, clazz);
    mv.addobject(normalexcelconstants.params, new exportparams(title, title));
    mv.addobject(normalexcelconstants.data_list, exportlist);
    return mv;
  }

}

这样我们导出数据的时候,只需要传入文件的标题(标题同样作为表格的标题)、数据类型、数据集合,就可以导出数据了

二、开始导出

1、给实体类加注解

我们将需要导出的实体类或 vo 类中的属性加上注解 @excel

package com.zyxx.sys.entity;

import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.extension.activerecord.model;
import com.zyxx.common.annotation.dict;
import io.swagger.annotations.apimodel;
import io.swagger.annotations.apimodelproperty;
import lombok.data;
import lombok.equalsandhashcode;
import lombok.experimental.accessors;
import org.jeecgframework.poi.excel.annotation.excel;

import java.io.serializable;

/**
 * <p>
 * 用户信息表
 * </p>
 *
 * @author lizhou
 * @since 2020-07-06
 */
@data
@equalsandhashcode(callsuper = false)
@accessors(chain = true)
@tablename("sys_user_info")
@apimodel(value = "sysuserinfo对象", description = "用户信息表")
public class sysuserinfo extends model<sysuserinfo> {


  @apimodelproperty(value = "id")
  @tableid(value = "id", type = idtype.auto)
  private long id;

  @excel(name = "账号", width = 15)
  @apimodelproperty(value = "登录账号")
  @tablefield("account")
  private string account;

  @apimodelproperty(value = "登录密码")
  @tablefield("password")
  private string password;

  @excel(name = "姓名", width = 15)
  @apimodelproperty(value = "姓名")
  @tablefield("name")
  private string name;

  @excel(name = "电话", width = 15)
  @apimodelproperty(value = "电话")
  @tablefield("phone")
  private string phone;

  @apimodelproperty(value = "头像")
  @tablefield("avatar")
  private string avatar;

  @excel(name = "性别", width = 15)
  @apimodelproperty(value = "性别(0--未知1--男2--女)")
  @tablefield("sex")
  private integer sex;

  @excel(name = "状态", width = 15)
  @apimodelproperty(value = "状态(0--正常1--冻结)")
  @tablefield("status")
  private integer status;

  @excel(name = "创建时间", width = 30)
  @apimodelproperty(value = "创建时间")
  @tablefield("create_time")
  private string createtime;
}
  • @excel(name = “性别”, width = 15)
  • name:表头
  • width:列宽度

导出 excel 时,只会导出加了 @excel 注解的字段,不然不会导出

2、导出数据

@apioperation(value = "导出用户信息", notes = "导出用户信息")
@getmapping(value = "/export")
public modelandview exportxls(sysuserinfo sysuserinfo) {
  return excelutils.export("用户信息统计报表", sysuserinfo.class, sysuserinfoservice.list(1, integer.max_value, sysuserinfo).getdata());
}

我们传入了文件的标题,类型为 sysuserinfo,传入了数据的集合,这样我们请求这个 api 就能导出数据了

SpringBoot中使用JeecgBoot的Autopoi导出Excel的方法步骤

SpringBoot中使用JeecgBoot的Autopoi导出Excel的方法步骤

可以看出数据已经成功导出,但是性别、状态这些属性值还属于魔法值,我们需要自己写 sql 来翻译这些值,或者配合数据字典来翻译这些值

三、配合数据字典导出

上面介绍了数据的简单导出,下面介绍配合数据字典导出数据,如果对数据字典不熟悉的同学,可先看看我的另一篇博客:【springboot】廿四、springboot中实现数据字典

1、@excel 注解

与上面注解相比,我们需要多加一个属性,diccode,如下

@excel(name = "性别", width = 15, diccode = "sex")
@apimodelproperty(value = "性别(0--未知1--男2--女)")
@tablefield("sex")
@dict(dictcode = "sex")
private integer sex;
  • @excel(name = “性别”, width = 15, diccode = “sex”)
  • name:表头
  • width:列宽度
  • diccode :字典类型

这样,我们就为这个字段注入了一个字典类型,这样就能翻译成文本了

2、配置类

要配合数据字典导出,我们需要配置 autopoi 的配置类 autopoiconfig.java

import org.jeecgframework.core.util.applicationcontextutil;
import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;

/**
 * autopoi 配置类
 *
 * @author lizhou
 */

@configuration
public class autopoiconfig {
	
	/**
	 * excel注解字典参数支持(导入导出字典值,自动翻译)
	 * 举例: @excel(name = "性别", width = 15, diccode = "sex")
	 * 1、导出的时候会根据字典配置,把值1,2翻译成:男、女;
	 * 2、导入的时候,会把男、女翻译成1,2存进数据库;
	 * @return
	 */
	@bean
	public applicationcontextutil applicationcontextutil() {
		return new org.jeecgframework.core.util.applicationcontextutil();
	}

}

3、翻译规则

我们可以根据自己项目中的字典翻译规则,来重写 autopoi 的字典翻译规则 autopoidictservice.java

import com.zyxx.sys.entity.sysdictdetail;
import com.zyxx.sys.mapper.sysdictdetailmapper;
import lombok.extern.slf4j.slf4j;
import org.jeecgframework.dict.service.autopoidictservicei;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.service;

import java.util.arraylist;
import java.util.list;

/**
 * 描述:autopoi excel注解支持字典参数设置
 * 举例: @excel(name = "性别", width = 15, diccode = "sex")
 * 1、导出的时候会根据字典配置,把值1,2翻译成:男、女;
 * 2、导入的时候,会把男、女翻译成1,2存进数据库;
 *
 * @author lizhou
 */
@slf4j
@service
public class autopoidictservice implements autopoidictservicei {

  @autowired
  private sysdictdetailmapper sysdictdetailmapper;

  /**
   * 通过字典翻译字典文本
   *
   * @author lizhou
   */
  @override
  public string[] querydict(string dictable, string diccode, string dictext) {
    list<string> dictreplaces = new arraylist<>();
    list<sysdictdetail> dictlist = sysdictdetailmapper.querydictitemsbycode(diccode);
    for (sysdictdetail t : dictlist) {
      if (t != null) {
        dictreplaces.add(t.getname() + "_" + t.getcode());
      }
    }
    if (dictreplaces != null && dictreplaces.size() != 0) {
      return dictreplaces.toarray(new string[dictreplaces.size()]);
    }
    return null;
  }
}

实现了 autopoidictservicei 接口,重写 querydict 方法,这里我只使用了 diccode 来查询字典列表,这样就能配合数据字典导出了

4、导出数据

导出数据如图所示

SpringBoot中使用JeecgBoot的Autopoi导出Excel的方法步骤

可以看出,数据已经成功导出,性别、状态等魔法值已经被翻译成文本,这样,我们的字典翻译是成功的

四、总结

以上介绍了 jeecgboot 中的 autopoi 导出 excel 的方法,还有配合数据字典导出等操作,可以看出,比以往我们使用的 poi、jsxl 使用方便,导出方便,大大提高了我们的工作效率。更多相关springboot autopoi导出excel内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!