Мне нужно создать запрос с помощью почтальона.Конечная точка загрузки пружины:
@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"
частях: