У меня есть метод POST, я хочу отправить изображение и объект JSON.Это мой метод:
@PostMapping("/saveCategory")
@ResponseStatus(HttpStatus.OK)
public void createCategory( @RequestParam("file") MultipartFile file, @RequestParam("id") CategoryModel s) {
System.out.println(s);
String fileName = fileStorageService.storeFile(file);
String fileDownloadUri = ServletUriComponentsBuilder.fromCurrentContextPath().path("/downloadFile/")
.path(fileName).toUriString();
// category.setImage_path(fileName);
//this.categoryRepository.save(category);
/*return new UploadFileResponse(fileName, fileDownloadUri,
file.getContentType(), file.getSize());*/
}
Это мой почтовый запрос от POSTMAN: -
Я не могу понять, где моя проблема, с запросом POSTMANили мой метод?
Это моя CategoryModel:
@Entity
@Table(name = "Category")
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
public class CategoryModel {
@Id
@Column(name = "id")
//@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String category_name;
private String category_description;
private String image_path;
@JsonIgnore
@OneToMany( mappedBy = "category")
private Set<ProductModel> category;