我想在我的Spring Boot应用程序中添加一个上传功能;这是我的Upload REST控制器
package org.sid.web;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.ServletContext;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import org.springframework.core.env.Environment;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.FileSystemResource;
import org.sid.entities.FileInfo;
@RestController
public class UploadController {
@Autowired
ServletContext context;
@RequestMapping(value = "/fileupload/file", headers = ("content-type=multipart/*"), method = RequestMethod.POST, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public ResponseEntity<FileInfo> upload(@RequestParam("file") MultipartFile inputFile) {
FileInfo fileInfo = new FileInfo();
HttpHeaders headers = new HttpHeaders();
if (!inputFile.isEmpty()) {
try {
String originalFilename = inputFile.getOriginalFilename();
File destinationFile = new File(
context.getRealPath("C:/Users/kamel/workspace/credit_app/uploaded") + File.separator + originalFilename);
inputFile.transferTo(destinationFile);
fileInfo.setFileName(destinationFile.getPath());
fileInfo.setFileSize(inputFile.getSize());
headers.add("File Uploaded Successfully - ", originalFilename);
return new ResponseEntity<FileInfo>(fileInfo, headers, HttpStatus.OK);
} catch (Exception e) {
return new ResponseEntity<FileInfo>(HttpStatus.BAD_REQUEST);
}
} else {
return new ResponseEntity<FileInfo>(HttpStatus.BAD_REQUEST);
}
}
}
但是,当在Postman中通过插入http://localhost:8082/fileupload/file并将文件添加到正文进行测试时,我得到了这个错误:“异常”:org.springframework.web.multipart.support.MissingServletRequestPartException", "message": "Required request part 'file' is not present
,
6条答案
按热度按时间g2ieeal71#
以下是您在 Postman 中的请求应该是这样的:
我的样例代码如下:
主应用程序类:
j0pj023g2#
在您的方法中,您指定了如下内容
@RequestParam("file")
.因此,它期望密钥为file
。这在异常消息中非常明显。上传文件时,请在 Postman 的Key
字段中使用此名称。有关集成测试用例和文件上传的更多信息,请点击此处
cnjp1d6j3#
我也有类似的问题,得到的错误请求零件文件不存在。但后来我意识到,我的应用程序中有以下代码,这会导致问题:
我删除了它,它开始对RequestPart和RequestParam起作用。请参阅下面的相关问题:
https://forum.predix.io/questions/22163/multipartfile-parameter-is-not-present-error.html
qyuhtwio4#
除了其他发布的答案,这个问题可能与缺少对处理请求的Servlet的多部分支持有关(在Spring的应用程序中是Spring的DispatcherServlet)。
这可以通过在web.xml声明中或在初始化期间向Dispatcher Servlet添加多部分支持来修复(如果是基于注解的配置)
A)基于Web-XML的配置
B)对于基于注解的配置,如下所示:
然后我们需要提供多部分解析器,可以解析作为多部分请求发送的文件。对于注解配置,这可以通过以下方式完成:
对于基于XML的Spring配置,您需要通过标记声明声明将此Bean添加到上下文中:
作为Spring的标准多部分解析器的替代方案,您可以使用Commons的实现。但是,这种方式需要额外的依赖关系:
5fjcxozz5#
我的错误
Could not resolve parameter [0] in public org.springframework.http.ResponseEntity... Required request part 'file' is not present
也有类似的问题,我尝试了很多方法,但只有一个更改解决了这个问题。我必须更新
dgjrabp26#
在我的例子中,我有多模块项目AS;
核心>API>管理
管理和API是核心模块的父模块。
Core/ImageController:
AdminApplicationInitializer:
当我尝试使用核心服务/Upload/Image从API模块上传文件时。我收到一个错误:“所需的请求部件‘文件’不存在”。ApiInitializer的原因没有像AdminInitializer那样的配置。
解决方案:我在ApiApplicationInitializer中添加了**MultipartResolver()和MultipartConfigElement()**方法,成功了。