Implementing Excel Import and Export with Spring Boot, MyBatis-Plus, and EasyExcel
Start by creating a Spring Boot project and add the necessary dependencies to the pom.xml file.
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>mysql</groupId ...
Posted on Fri, 31 Jul 2026 16:30:07 +0000 by [ArcanE]
Efficient Large-Scale Data Export to Excel in Java
Backend Implementation:
1. Maven Dependencies
<!-- EasyExcel for data export -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>3.0.2</version>
</dependency>
2. Configuration Package
Create a config folder and add an ExcelExporter class. ...
Posted on Wed, 15 Jul 2026 17:02:59 +0000 by kra
Implementing Efficient Excel Import/Export in Spring Boot with EasyExcel
Optimizing Excel Data Handling in Spring Boot Applications
When dealing with Excel import/export functionality in Java web applications, memory efficiency becomes crucial. Traditional libraries like EasyPoi or Hutool can consume significant memory, making EasyExcel a better choice for large datasets. This implementation leverages Java 8 functio ...
Posted on Tue, 23 Jun 2026 17:31:45 +0000 by sangamon