Код: Выделить всё
`@PostMapping(value = "/new", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)public ResponseEntity XYZ(@RequestPart String Param1,@ModelAttribute RequestDto requestDto,@RequestPart String Param2,@RequestPart List files)
Код: Выделить всё
{log.info("request {}", requestDto)return ResponseEntity.ok().build(); }`
почему это происходит и как я могу получить значение моего запроса Dto
Подробнее здесь: https://stackoverflow.com/questions/790 ... ting-all-i