FileUpload Multipart Springboot错误 - >所需的请求部分'文件'不存在

时间:2017-11-06 15:44:18

标签: spring-boot file-upload multipartform-data multipart spring-restcontroller

我正在尝试使用Angular 4.0和SpringBoot Application上传json文件。我已经检查并尝试过Stackoverflow的其他解决方案,但我无法确定究竟是什么问题。

我收到400 BAD请求错误消息,并显示以下消息:所需的请求部分'file'不存在。

我的RestController看起来像这样(出于测试目的),但遗憾的是没有任何反应。

@RestController
@RequestMapping("/api")
public class UploadRequestResource {
....

@PostMapping("/fileupload")
@Timed
public ResponseEntity<Endpoint> FileUpload(@RequestParam("file") MultipartFile file) throws URISyntaxException {
       if (file.isEmpty()) {
          System.out.println("File is empty"); }

       System.out.println("File is not empty");

       //some logic 

       return ResponseEntity.ok() ....
    }
}

我在我的应用程序配置文件中添加了以下内容:

spring:
     http:
        multipart:
            max-file-size: 5MB
            max-request-size: 20MB

我的HTML文件如下所示:

<form name="editForm" role="form" novalidate (ngSubmit)="save()" #editForm="ngForm">
    ...
   <input type="radio" [(ngModel)]="form.uploadType"  name="uploadType" value="file">&nbsp;<label for="url">File</label><br>
   <input type="file" name="file" placeholder="Upload file..." (change)="onFileChange($event)" (focus)="onFileFocus()"/>
            </div>
        </div>

Angular ts文件如下所示:

fileUpload(data): Observable<Endpoint> {
        let headers = new Headers({ 'Content-Type': 'multipart/form-data' });
        let options = new RequestOptions({ headers: headers });
        return this.http.post('/api/fileupload', data , options).map((res: Response) => {
            const jsonResponse = res.json();
            return this.convertItemFromServer(jsonResponse);
        });
    }

有谁知道我应该如何解决这个错误?我会非常感激任何帮助。感谢

1 个答案:

答案 0 :(得分:0)

所以我找到了解决问题的方法。而是使用Content-Type:“multipart / form-data”我使用了Formdata(见下文)。

const formData = new FormData();
        formData.append('file', data, data.name);
        return this.http.post('/api/fileupload', formData).map((res: Response) => {
            const jsonResponse = res.json();
            return this.convertItemFromServer(jsonResponse);

现在它运作正常。