我需要使用邮递员创建一个请求。 Spring Boot端点为:
@RequestMapping(
value = "/group",
method = RequestMethod.POST,
consumes = MediaType.MULTIPART_FORM_DATA_VALUE
)
public ResponseEntity<String> group(
@RequestPart("items") List<ItemType> items,
@RequestPart("group") GroupType group);
其中:
public class ItemType {
private String description;
private String security;
private Date bestdate;
private MultipartFile content;
}
public class GroupType {
private String description;
private String security;
private String metadata;
}
如您所见,ItemType
包含一个MultiPartFile
。
我的意思是,我需要在"items"
和"group"
部分上写什么: