springboot專案整合POI匯出Excel表

2021-09-02 02:29:42 字數 1680 閱讀 6296

poi是excel2003,poi-ooxml是2007+以上的。

專案pom中匯入依賴:
org.apache.poi

poi-ooxml

3.9

編寫匯出excel的工具類。這是依據我的專案編寫的工具類,文章尾部會貼出公共方法的工具類

/**

* 匯出excel表

前端頁面中的js

$("button[data-method='export']").click(function () );

下面是乙個公共的匯出excel的工具類,可以根據自己傳入資料型別進行修改,list,map..

/**

* 建立excel並填入資料

* @param head 資料頭

* @param body 主體資料

//將主體資料填入excel中

for (int i = 0, isize = body.size(); i < isize; i++)

}response.setheader("content-disposition", "attachment;filename=" + filename);

response.flushbuffer();

workbook.write(response.getoutputstream());

}

網上還有很多設定單元格的格式。

springboot專案整合vue

由於特殊原因,所以臨危受命將vue整合到springboot的專案中,終於在忙活了一天之後成功搞定,下面就分享一下這次的整合過程 1建立springboot和vue專案 springboot以及vue專案都已經由前後端同事分別開發完成,這裡就不介紹具體的建立過程了 2.打包vue專案 vue使用了v...

SpringBoot專案整合Swagger2

swagger 是最流行的 api 開發工具,它遵循 openapi specification openapi 規範,也簡稱 oas swagger 可以貫穿於整個 api 生態,如 api 的設計 編寫 api 文件 測試和部署。swagger 是一種通用的,和程式語言無關的 api 描述規範。...

springboot專案整合shiro

pom.xml配置檔案中,新增shiro org.apache.shiro shiro spring boot web starter 1.4.0 com.github.theborakompanioni thymeleaf extras shiro 2.0.0 org.springframewor...