У меня проблема с прокси-сервером zuul, он размером с запрос, я всегда получаю 500 ошибок. Соединение было закрыто до ответа.
Код контроллера:
@RestController
@RequestMapping("/file")
public class FileController {
@PostMapping("/upload")
public ResponseEntity<String> uploadFile(@RequestParam("file") MultipartFile file) throws Exception {
System.out.println("File Name : " + file.getOriginalFilename(),
"File Size : " + file.getSize() + "bytes");
return ResponseEntity.ok(file.getName() + " uploaded");
}
}
Любой идея?