79098231

Date: 2024-10-17 13:14:03
Score: 0.5
Natty:
Report link

This error occurs because you are using the @RequestParam annotation. This annotation can only be used to retrieve request parameters.

You must use the @RequestPart annotation to retrieve data from a multipart form.

@RequestPart("image") MultipartFile file
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrey Smelik