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