中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Springboot整合GridFS實現文件操作

發布時間:2021-10-23 13:41:04 來源:億速云 閱讀:163 作者:iii 欄目:開發技術

本篇內容介紹了“如何使用Springboot整合GridFS實現文件操作”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

目錄
  • GridFsOperations,實現GridFS文件上傳下載刪除

    • 上傳下載刪除功能實現

  • 測試

    • 上傳

    • 下載

    • 刪除

GridFsOperations,實現GridFS文件上傳下載刪除

最近學習GridFS,想用它整合springboot弄個文件的上傳下載。

網上查到的很多資料都是使用GridFsTemplate,還有GridFSBucket來實現的,需要各種額外配置Bean。但是看了spring-data-mongodb的官方文檔,以及示例代碼,他們只用到了GridFsOperations,無需其他任何配置。

然后就用GridFsOperations寫了個文件上傳下載的demo,用起來還是很方便的,給大家個參考。

上傳下載刪除功能實現

pom.xml

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>

application.properties

#文件上傳下載配置
spring.servlet.multipart.max-file-size=1024MB
spring.servlet.multipart.max-request-size=1024MB

FileController

package com.example.tryRedis.controller;
import static org.springframework.data.mongodb.core.query.Query.*;
import static org.springframework.data.mongodb.gridfs.GridFsCriteria.*;
import com.mongodb.client.gridfs.model.GridFSFile;
import io.swagger.v3.oas.annotations.Parameter;
import org.bson.types.ObjectId;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.gridfs.GridFsOperations;
import org.springframework.data.mongodb.gridfs.GridFsResource;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.util.HashMap;
import java.util.Map;
@RestController
@RequestMapping("/file")
public class FileController {
    @Autowired
    GridFsOperations gridFsOperations;
    //上傳文件
    @PostMapping(value = "/upload",consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
    public Map<String , ObjectId> upload(@Parameter @RequestPart(value = "file") MultipartFile file){
        //開始時間
        long begin = System.nanoTime();
        Map<String,ObjectId> map = new HashMap<>();
        try{
            InputStream streamForUpload = file.getInputStream();
            ObjectId objectId = gridFsOperations.store(streamForUpload,file.getOriginalFilename(),file.getContentType());
            //上傳結束
            long end = System.nanoTime();
            long time = end-begin;
            System.out.println("本次上傳共耗時: "+ time);
            System.out.println("上傳成功!文件名: "+file.getOriginalFilename()+". 文件ID: "+objectId);
            map.put(file.getOriginalFilename(),objectId);
        }catch (Exception e){
            e.printStackTrace();
        }
        return map;
    }
    //查詢并下載文件
    @GetMapping("/download")
    public String download(String filename, HttpServletResponse response) throws IOException {
        //開始時間
        long begin = System.nanoTime();
        //查詢文件
        GridFSFile result  = gridFsOperations.findOne(query(whereFilename().is(filename)));
        GridFsResource gridFsResource= gridFsOperations.getResource(result);
        String contentType = gridFsResource.getContentType();
        System.out.println("contentType: "+contentType);
        System.out.println("filename: "+gridFsResource.getFilename());
        response.reset();
        response.setContentType(contentType);
        //注意: 如果沒有下面這行設置header, 結果會將文件的內容作為響應的 body 直接輸出在頁面上, 而不是下載文件
        response.setHeader("Content-Disposition","attachment;filename="+filename);  //指定下載文件名
        ServletOutputStream outputStream = response.getOutputStream();
        InputStream is = gridFsResource.getInputStream();
        byte[] bytes = new byte[1024];
        int len = 0;
        while ((len=is.read(bytes))!=-1){
            outputStream.write(bytes,0,len);
        }
        is.close();
        outputStream.close();
        //下載結束
        long end = System.nanoTime();
        long time = end-begin;
        System.out.println("本次下載共耗時: "+ time);
        return contentType;
    }
    @DeleteMapping("/delete")
    public String deleteFile(@Parameter @RequestParam("filename") String filename){
        gridFsOperations.delete(query(whereFilename().is(filename)));
        return "delete success";
    }
}

測試

上傳

如何使用Springboot整合GridFS實現文件操作 如何使用Springboot整合GridFS實現文件操作

下載

紅色圈內點擊download就可以下載啦。或者在地址欄直接輸入localhost:8080/file/download?filename=todo.txt 也可以直接下載文件(這里的todo.txt是我測試的文件,你們填自己上傳的文件名,不要忘了加上后綴名!)

如何使用Springboot整合GridFS實現文件操作

刪除

如何使用Springboot整合GridFS實現文件操作

上面這些上傳刪除功能測試的時候,大家也可以結合mongodb的數據庫去看看。

如何使用Springboot整合GridFS實現文件操作

“如何使用Springboot整合GridFS實現文件操作”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瓦房店市| 汶上县| 罗江县| 伽师县| 黔西| 西畴县| 武胜县| 芜湖县| 沂水县| 海林市| 丁青县| 龙泉市| 新平| 上犹县| 陇西县| 铁岭县| 千阳县| 张家口市| 小金县| 巴马| 库尔勒市| 灌南县| 罗定市| 广汉市| 奇台县| 汾西县| 霍林郭勒市| 凌海市| 乐亭县| 五台县| 亚东县| 余庆县| 佳木斯市| 四平市| 中西区| 甘泉县| 山东省| 鸡泽县| 宣汉县| 虎林市| 呈贡县|