我想在Spring中创建rest API,同时用于上传图库图像。下面是我的Gallery Pojo。
b = (item*)malloc(sizeof(struct item));
在我的Spring RestController中,我接受了import org.springframework.web.multipart.MultipartFile;
public class Gallery {
private String title;
private String desc;
private MultipartFile file;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public MultipartFile getFile() {
return file;
}
public void setFile(MultipartFile file) {
this.file = file;
}
}
个对象。
List<Gallery>
我找到了一个解决方案但是Multipart数组被接受为请求数据。
等。 @RequestMapping(value="/gallery-images-save", method=RequestMethod.POST)
public Response saveGalleryImages(List<Gallery> galleryImages) {
// my code to process and save gallery images.
}
但在我的方案中,我希望List<MultipartFile>
其中的图库包含一个List<Gallery>
个对象。