springboot版本3.2.0,数据库版本8
mybatisplus版本3.5.4.1
@PostMapping("/import")
@ResponseBody
public List<User> excelUpload( MultipartFile file) throws IOException{
if (file==null){
System.out.println("文件为空");
}
List<User> userList= EasyExcel.read(file.getInputStream(), User.class,new UserUploadListener(userService))
.head(User.class)
.sheet()
.doReadSync();
System.out.println(userList);
return userList;
}
使用postman进行测试时,需要把key传进去,不然会报空文件异常,