Код: Выделить всё
@PutMapping(value="/fileupload", consumes={MediaType.APPLICATION_OCTET_STREAM_VALUE}
pubic ResponseEntity uploadFIle(InputStream stream){
log.info("start");
IOUtils.copyLarge(stream,new FileOutputStream("c:\\tmp\\test.txt");
log.info("end");
}
Подробнее здесь: https://stackoverflow.com/questions/787 ... -to-a-file
Мобильная версия