Spring 기반에서 Server File 을 받아야 하는 경우. 간단하게 구현할 수 있음. @GetMapping("/downloadFile/{fileName:.+}") public ResponseEntity downloadFile(@PathVariable String fileName, HttpServletRequest request){ // Load file as Resource Resource resource = null; Path filePath = Paths.get("/data/log/cds",fileName); String path = request.getHeader("file-path"); if(path!=null) { filePath = Paths.get(path,fileName); } Sy..