Controller

No ProductController criar o endpoint, veja:

O RequestParam consegue reconhecer o "file" do postman

@PostMapping(value = "/image") 
public ResponseEntity<UriDto> uploadImage(@RequestParam("file") MultiPartFile file) {
    UriDTO dto = service.uploadFile(file);
    return ResponseEntity.ok().body(dto);
}

Atualizado