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 中国語 Web サイトの他の関連記事を参照してください。