中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot使用JeecgBoot中的Autopoi功能如何實現導出Excel

發布時間:2020-11-04 15:37:45 來源:億速云 閱讀:4867 作者:Leah 欄目:開發技術

這篇文章運用簡單易懂的例子給大家介紹SpringBoot使用JeecgBoot中的Autopoi功能如何實現導出Excel,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

說到導出 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

可以看出,數據已經成功導出,性別、狀態等魔法值已經被翻譯成文本,這樣,我們的字典翻譯是成功的

關于SpringBoot使用JeecgBoot中的Autopoi功能如何實現導出Excel就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东山县| 阳谷县| 安达市| 巨野县| 上虞市| 土默特右旗| 高台县| 屯昌县| 罗源县| 涿州市| 古田县| 饶阳县| 襄樊市| 木里| 江阴市| 延安市| 东辽县| 丹江口市| 两当县| 尚志市| 江源县| 曲阜市| 黑水县| 曲靖市| 永昌县| 东城区| 察哈| 延长县| 长寿区| 永春县| 奉贤区| 蓝田县| 七台河市| 阿荣旗| 甘洛县| 青田县| 刚察县| 老河口市| 饶河县| 沅陵县| 南投市|