Springboot通过前端发起请求,上传excel文件解析数据 postman进行操作

发布时间:2024年01月17日

springboot版本3.2.0,数据库版本8

mybatisplus版本3.5.4.1

controller层
    @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返回数据

注意

使用postman进行测试时,需要把key传进去,不然会报空文件异常,

文章来源:https://blog.csdn.net/m0_58462450/article/details/135660615
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。