Spring Boot REST 서비스에서 파일 다운로드
Spring Boot에서는 REST 서비스를 활용하여 파일을 다운로드할 수 있습니다. 그러나 다운로드가 실패하면 일반적인 문제가 발생합니다.
이 오류가 발생하는 서비스 구현은 다음과 같습니다.
<code class="java">@RequestMapping(path="/downloadFile",method=RequestMethod.GET) public ResponseEntity<InputStreamReader> downloadDocument( String acquistionId, String fileType, Integer expressVfId) throws IOException { // Code for file acquisition... HttpHeaders headers = new HttpHeaders(); headers.add("Cache-Control", "no-cache, no-store, must-revalidate"); headers.add("Pragma", "no-cache"); headers.add("Expires", "0"); InputStreamReader i = new InputStreamReader(new FileInputStream(file2Upload)); return ResponseEntity.ok().headers(headers).contentLength(file2Upload.length()) .contentType(MediaType.parseMediaType("application/octet-stream")) .body(i); }</code>
이 문제를 해결하려면 다음 해결 방법을 고려하세요.
옵션 1: InputStreamResource 사용
InputStreamResource를 사용하여 파일의 InputStream 래핑:
<code class="java">InputStreamResource resource = new InputStreamResource(new FileInputStream(file)); return ResponseEntity.ok() .headers(headers) .contentLength(file.length()) .contentType(MediaType.APPLICATION_OCTET_STREAM) .body(resource);</code>
옵션 2: ByteArrayResource 사용
InputStreamResource 문서에서 제안한 대로 ByteArrayResource를 사용하는 것이 더 효율적일 수 있습니다.
<code class="java">Path path = Paths.get(file.getAbsolutePath()); ByteArrayResource resource = new ByteArrayResource(Files.readAllBytes(path)); return ResponseEntity.ok() .headers(headers) .contentLength(file.length()) .contentType(MediaType.APPLICATION_OCTET_STREAM) .body(resource);</code>
이러한 솔루션을 통합하면 Spring Boot REST 서비스에서 파일을 성공적으로 다운로드할 수 있습니다.
위 내용은 Spring Boot REST 서비스에서 파일을 성공적으로 다운로드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!