I have one condition where I need a multipart file as parameter and another request body in which some details related to file will be there, so is it possible for me to do that ?
@RequestParam(value = "name", required = false) String name,
@RequestParam("file") MultipartFile file, @RequestBody CandidteEmailDTO dto