如何在Spring

时间:2017-12-18 12:18:10

标签: spring spring-mvc spring-boot

我们有一个HTTP请求,当在服务器中处理时会创建大小约3GB的响应,此数据是对数据库的6个查询的聚合,我们如何将此数据作为6个查询的单独响应而不是聚合发送。

2 个答案:

答案 0 :(得分:2)

StreamingResponseBody用于异步请求处理,其中应用程序可以直接写入响应OutputStream。

查看这篇文章

http://www.logicbig.com/how-to/code-snippets/jcode-spring-mvc-streamingresponsebody/

http://shazsterblog.blogspot.in/2016/02/asynchronous-streaming-request.html

答案 1 :(得分:1)

我这样做了:

 @GetMapping("/{fileName:[0-9A-z]+}")
    @ResponseBody
    public ResponseEntity<InputStreamResource> get_File(@PathVariable String fileName) throws IOException {
        Files dbFile = fileRepository.findByUUID(fileName);

        if (dbFile.equals(null))
            return new ResponseEntity<>(HttpStatus.NOT_FOUND);

        String filename = dbFile.getFileName();
        Resource file = storageService.loadAsResource(dbFile.getFileName());


        long len = 0;
        try {
            len = file.contentLength();
        } catch (IOException e) {
            e.printStackTrace();
        }


        MediaType mediaType = MediaType.valueOf(FileTypeMap.getDefaultFileTypeMap().getContentType(file.getFile()));

        if (filename.toLowerCase().endsWith("mp4") || filename.toLowerCase().endsWith("mp3") ||
                filename.toLowerCase().endsWith("3gp") || filename.toLowerCase().endsWith("mpeg") ||
                filename.toLowerCase().endsWith("mpeg4"))
            mediaType = MediaType.parseMediaType("application/octet-stream");


        InputStreamResource resource = new InputStreamResource(new FileInputStream(file.getFile()));

        return ResponseEntity.ok()
                .contentType(mediaType)
                .contentLength(len)
                .header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + file.getFilename() + "\"")
                .body(resource);
    }