我想通过邮递员将图片上传到我的Rest API。我正在使用spring boot框架。这是屏幕截图:
我还没有像我在其他堆栈溢出答案中找到的那样设置任何标题,因为它给出了多部分边界错误。
现在,下面是我的控制器代码:
package com.practice.rest.assignment1.controller;
import java.io.IOException;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
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.RestController;
import org.springframework.web.multipart.MultipartFile;
import com.practice.rest.assignment1.model.Product;
import com.practice.rest.assignment1.service.CatalogueService;
import org.codehaus.jackson.JsonParseException;
import org.codehaus.jackson.map.JsonMappingException;
import org.codehaus.jackson.map.ObjectMapper;
@RestController
@RequestMapping("/CatalogueController/")
public class CatalogueController{
@Autowired
private CatalogueService catalogueService;
@RequestMapping(value = "addProduct", method = RequestMethod.POST , consumes = "multipart/form-data")
public Product addProduct(@RequestParam String productJson, @RequestParam MultipartFile file) throws JsonParseException, JsonMappingException, IOException {
Product product = new ObjectMapper().readValue(productJson, Product.class);
byte[] mediaBytes = file.getBytes();
product.setImage(mediaBytes);
return catalogueService.saveInDb(product);
}
}
现在,我正在使用一个Product对象,该对象内部包含一个定义为byte []数组的图像。我把它作为字符串和图像分别作为Multipart文件。
以下是我定义的产品类属性:
private Long pId;
private String model;
private String brand;
private byte[] image; // This is where I want the image to save
private Long price;
private String currency;
private String transmissionType;
private String fuelType;
因为,我正在使用spring boot,这是我的Main类:
package com.practice.rest.assignment1;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class App {
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
}
我得到的邮递员错误是:
{
"timestamp": 1478611635977,
"status": 400,
"error": "Bad Request",
"exception": "org.springframework.web.multipart.support.MissingServletRequestPartException",
"message": "Required request part 'file' is not present",
"path": "/CatalogueController/addProduct"
}
我哪里错了?
答案 0 :(得分:4)
尝试删除标题中的'Content-Type: multipart/form-data...'
部分。它为我解决了这个问题。
答案 1 :(得分:2)
对我而言,它可以在 application.properties 中设置这些变量:
spring.http.multipart.enabled=true
spring.http.multipart.location= /upload
答案 2 :(得分:1)
我认为问题在于您发送的JSON参数。在邮递员中,您不需要将起始和尾随“表示为一个参数作为字符串。 而且如果你使用开始和结束“然后在JSON内部(对于JSON对象的意思是属性键和值),你应该使用'(单引号)。
答案 3 :(得分:1)
嗨@Breaking Benjamin我做了同样的演示,还有我的帖子请求副本:
curl 'http://localhost:9999/api/v1/upload' -H 'Pragma: no-cache' -H 'Origin: chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm' -H 'Accept-Encoding: gzip, deflate, br' -H 'Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.6,en;q=0.4' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36' -H 'Content-Type: multipart/form-data; boundary=----WebKitFormBoundary0ae4CymwYLjdqdI1' -H 'Accept: */*' -H 'Cache-Control: no-cache' -H 'Cookie: _ga=GA1.1.433565887.1474948752' -H 'Connection: keep-alive' -H 'DNT: 1' --data-binary $'------WebKitFormBoundary0ae4CymwYLjdqdI1\r\nContent-Disposition: form-data; name="file"; filename="228cb73.jpg"\r\nContent-Type: image/jpeg\r\n\r\n\r\n------WebKitFormBoundary0ae4CymwYLjdqdI1\r\nContent-Disposition: form-data; name="a"\r\n\r\n123\r\n------WebKitFormBoundary0ae4CymwYLjdqdI1--\r\n' --compressed
而且,我的上传控制器是这样写的:
@RequestMapping(method = RequestMethod.POST)
public ResponseEntity handleUpload(
@RequestParam("a")String a,
@RequestParam("file") MultipartFile multipartFile) throws IOException {
System.out.println(a);
...
在我的控制台中,成功输出了参数a
:
即使我使用json字符串再次发送请求:
curl 'http://localhost:9999/api/v1/upload' -H 'Pragma: no-cache' -H 'Origin: chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm' -H 'Accept-Encoding: gzip, deflate, br' -H 'Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.6,en;q=0.4' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36' -H 'Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryBTudL55M6S8ENLVt' -H 'Accept: */*' -H 'Cache-Control: no-cache' -H 'Cookie: _ga=GA1.1.433565887.1474948752' -H 'Connection: keep-alive' -H 'DNT: 1' --data-binary $'------WebKitFormBoundaryBTudL55M6S8ENLVt\r\nContent-Disposition: form-data; name="file"; filename="228cb73.jpg"\r\nContent-Type: image/jpeg\r\n\r\n\r\n------WebKitFormBoundaryBTudL55M6S8ENLVt\r\nContent-Disposition: form-data; name="a"\r\n\r\n"{"key":"value"}"\r\n------WebKitFormBoundaryBTudL55M6S8ENLVt--\r\n' --compressed
看起来你的代码还可以,但是你会尝试再次使用curl
发送请求,也许这是因为你对邮递员的使用不好。
答案 4 :(得分:1)
我通过更新变量工作来更新我的application.properties spring.http.multipart.enabled = true
我的服务是
@PostMapping(value = "/console")
public ResponseEntity<RxConsoleDTO> addRxConsole(@RequestParam("attachment") MultipartFile attachmentFile, @RequestParam("type") String type) throws IOException {// your logic}
答案 5 :(得分:0)
还要检查属性下方的属性是否已启用,以及如果我们正在上传文本文件,它将不会被视为正确的参数。
upload.file.extensions = jpg,jpeg,gif,png
答案 6 :(得分:0)
我刚碰到你的问题,因为我也遇到了同样的错误。 注意:我正在编写一个 pyTest 来测试我的 API。
我刚刚从文件中删除了以下几行
'Content-Type': 'multipart/form-data; boundary=--------------------------561045520875406684819091',
'content-type': 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW',
而且,它奏效了:)