在 Spring Boot 中使用注解轻松上传和下载 Excel 文件
在 Spring Boot 中使用 @RequestExcel 和 @ResponseExcel 注解轻松上传和下载 Excel 文件。
下载示例,类似于 @ResponseBody :
@RequestMapping("/download") @ResponseExcel({ "name", "book.name", "book.author"}) public List<Character> download() { return listCharacters(); }
上传示例,类似于 @RequestParam :
@RequestMapping("/upload") @ResponseBody public List<Character> upload(@RequestExcel(value = "excel", targetClass = Character.class, fieldNames = { "name", "book.name", "book.author"}) List<Character> characters) { return characters; }
已提交至 Maven 中央仓库。
<dependency> <groupId>com.gaoice</groupId> <artifactId>easyexcel-spring-boot-starter</artifactId> <version>2.0</version> </dependency>
更多使用示例:
下一篇:
微服务:同步与异步的抉择。