사유 : static 폴더에 생성된 이미지는 서버 구동 이후에 자동으로 업데이트되지 않음 Spring devtools를 쓰면 된다고 하지만, intellij에서 추가적인 설정도 필요하고, init 단계가 반복 호출되면 망가져서 사용 불가 결국 File을 백엔드에서 프론트로 직접 전달(byte[]의 형태로) 1. File을 byte[]로 변경해 전송하기 (백엔드) @GetMapping("/getImage/{id}") public ModelAndView getImage(@PathVariable String id, ModelAndView mav){ try (InputStream inputStream = new FileInputStream("src/main/resources/static/image/"+id+"...