상황 byte[] totalByte = Files.readAllBytes(Paths.get(resourceMasterEntity.getPath())); .... BufferedOutputStream outStream = new BufferedOutputStream(response.getOutputStream()); .... outStream.write(totalByte); 파일을 byte로 저장한 뒤, response로 보내려는 목적으로 작성했고 실제로 작동을 했으나 서버가 터졌습니다......ㅠㅠ 이유를 알아보고자 해당 API가 동작할 때 서버 cpu와 메모리를 관찰했습니다. .......?!?! 실제로 CPU 사용량의 %가 100을 훌쩍 넘겼으며 CPU 사용량이 비정상적일 때 나타나는 Controll..