经常在写了接口之后需要自己测试一下 这个MultipartFile很让人头疼 因为本地读取文件是File类型,需要转换一下才能使用 File file = new File("D://1234.jpg");FileInputStream fileInputStream = new FileInputStream(file);MultipartFile multipartFile = ne
今天在使用Spring MVC 进行文件上传时提示出如下错误: java.lang.IllegalStateException: File has been moved - cannot be read againat org.springframework.web.multipart.commons.CommonsMultipartFile.getBytes(CommonsMultipa
1.PostMapping上传文件需要用MultipartFile接收2.需要转file的话,就手动转:3.上传文件成功后,记得删除本地文件:4.postman请求上传文件,还搞错好几次: 1.PostMapping上传文件需要用MultipartFile接收 2.需要转file的话,就手动转: @PostMapping("/importData")public R