上传文件springboot所需的请求部分“文件”不存在

Posted

技术标签:

【中文标题】上传文件springboot所需的请求部分“文件”不存在【英文标题】:upload file springboot Required request part 'file' is not present 【发布时间】:2017-10-11 16:38:25 【问题描述】:

我想在我的 Spring Boot 应用程序中添加一个上传功能; 这是我上传的 Rest Controller

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);
    
  

但是当在邮递员中通过插入http://localhost:8082/fileupload/file 并将文件添加到正文中进行测试时 我收到了这个错误:“异常”:org.springframework.web.multipart.support.MissingServletRequestPartException", "message": "Required request part 'file' is not present

【问题讨论】:

这可能会有所帮助***.com/questions/43864826/… 不幸的是,这并不能解决我的问题。错误仍然出现 【参考方案1】:

除了其他已发布的答案外,问题可能与缺少对处理请求的 servlet 的多部分支持有关(对于 Spring 的应用程序,Spring 的 DispatcherServlet)。

这可以通过在 web.xml 声明或初始化期间添加对调度程序 servlet 的多部分支持来解决(在基于注释的配置的情况下)

a) 基于 web-xml 的配置

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
          http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
          version="3.0">

 <servlet>
   <servlet-name>dispatcher</servlet-name>
   <servlet-class>
     org.springframework.web.servlet.DispatcherServlet
   </servlet-class>
   <init-param>
     <param-name>contextConfigLocation</param-name>
     <param-value>/WEB-INF/spring/dispatcher-config.xml</param-value>
   </init-param>
   <load-on-startup>1</load-on-startup>
   <multipart-config>
        <max-file-size>10485760</max-file-size>
        <max-request-size>20971520</max-request-size>
        <file-size-threshold>5242880</file-size-threshold>
    </multipart-config>
 </servlet>

</web-app>

b) 对于基于注释的配置,如下:

public class AppInitializer implements WebApplicationInitializer  

@Override 
public void onStartup(ServletContext servletContext)  
    final AnnotationConfigWebApplicationContext appContext = new AnnotationConfigWebApplicationContext(); 

    final ServletRegistration.Dynamic registration = servletContext.addServlet("dispatcher", new DispatcherServlet(appContext)); 
    registration.setLoadOnStartup(1); 
    registration.addMapping("/"); 

    File uploadDirectory = new File(System.getProperty("java.io.tmpdir"));                  
    MultipartConfigElement multipartConfigElement = new  MultipartConfigElement(uploadDirectory.getAbsolutePath(), 100000, 100000 * 2, 100000 / 2); 

    registration.setMultipartConfig(multipartConfigElement);
 

然后我们需要提供多部分解析器,它可以解析作为多部分请求发送的文件。对于注释配置,可以通过以下方式完成:

@Configuration
public class MyConfig 

@Bean
public MultipartResolver multipartResolver() 
    return new StandardServletMultipartResolver();


对于基于 xml 的 spring 配置,您需要通过标签声明声明将此 bean 添加到上下文中:

<bean id="multipartResolver" class="org.springframework.web.multipart.support.StandardServletMultipartResolver" /> 

除了 spring 的标准多部分解析器之外,您还可以使用 commons 中的实现。但是这种方式需要额外的依赖:

<dependency>
  <groupId>commons-fileupload</groupId>
  <artifactId>commons-fileupload</artifactId>
  <version>1.3.3</version>
</dependency>

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="100000000"/>
</bean>

【讨论】:

这个答案帮助我解决了问题,非常感谢【参考方案2】:

我也遇到了类似的问题,并且错误请求部分文件不存在。 但后来我意识到我的应用程序中有这段代码导致了问题:

@Bean(name = "multipartResolver")
    public CommonsMultipartResolver multipartResolver() 
        CommonsMultipartResolver multipartResolver = new 
        CommonsMultipartResolver();
        multipartResolver.setMaxUploadSize(1000000000);
        return multipartResolver;
      

我删除了它,它开始为 RequestPart 和 RequestParam 工作。 请参阅下面的相关问题:

https://forum.predix.io/questions/22163/multipartfile-parameter-is-not-present-error.html

【讨论】:

我有类似的问题,可能是我在之前的 Spring 版本中工作过的 Bean;在 1.5.15 中,我不得不将其删除。 删除此配置对我有用。我用spring-boot-2.0.2【参考方案3】:

这就是您在 Postman 中的请求的样子:

我的示例代码:

application.properties

#max file and request size 
spring.http.multipart.max-file-size=10MB
spring.http.multipart.max-request-size=11MB

主要应用类:

Application.java

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application 

    public static void main(String[] args) 
        SpringApplication.run(Application.class, args);
    

Rest 控制器类:

import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
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.multipart.MultipartFile;


    @Controller
    @RequestMapping("/fileupload")
    public class MyRestController 

    @RequestMapping(value = "/file", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
        public @ResponseBody String myService(@RequestParam("file") MultipartFile file,
                @RequestParam("id") String id) throws Exception 

    if (!file.isEmpty())  

           //your logic
                        
return "some json";

                
    

pom.xml

//...

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.2.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>

....



<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web-services</artifactId>
</dependency>

//...

【讨论】:

我正在尝试相同的测试,但我将文件作为密钥传递并选择一个文件,但错误仍然存​​在。这就是为什么我这么困惑 我已将此添加到我的应用文件中:@Bean public CommonsMultipartResolver multipartResolver() CommonsMultipartResolver multipart = new CommonsMultipartResolver(); multipart.setMaxUploadSize(3 * 1024 * 1024); return multipart; @Bean @Order(0) public MultipartFilter multipartFilter() MultipartFilter multipartFilter = new MultipartFilter(); multipartFilter.setMultipartResolverBeanName("multipartReso‌​lver"); return multipartFilter; 是的,因为我在使用 spring boot 之前已经研究过了。 @TanmayPlease 你能告诉我你的代码,因为我真的没有得到这个错误。我已经阻止了这两个星期,我的 angular2 前端部分需要这个休息控制器 它现在可以工作了,我只是改变了函数的负责人,真的很感谢你的帮助。谢谢【参考方案4】:

在您的方法中,您已像这样指定@RequestParam("file")。因此它期望密钥是file。在异常消息中非常明显。上传文件时,在 Postman 的 Key 字段中使用此名称。 更多信息在这里integration test case and file upload

【讨论】:

感谢您的帮助,但不幸的是,这就是我正在做的事情。我将文件作为密钥传递并上传文件,但它不起作用。

以上是关于上传文件springboot所需的请求部分“文件”不存在的主要内容,如果未能解决你的问题,请参考以下文章

春季文件上传 - '所需的请求部分不存在'

在 tomcat 中运行的 Spring Boot,所需的请求部分“文件”不存在

使用 multer 文件输入的 axios 请求中不存在所需的请求部分“文件”

Spring Boot 和 HTML 方法参数类型字符串所需的请求参数“Coord1”不存在]

上传 DSYMS 文件失败。我已经上传了 myapp.app.dSYM 压缩文件,但它再次要求我上传“上传缺少所需的 dSYM”

如何添加 Weblate REST 翻译文件上传所需的权限?