国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

SpringBoot非官方教程 | 第十七篇:上傳文件

Galence / 3260人閱讀

摘要:為例能夠上傳文件在服務(wù)器,你需要在中加入標(biāo)簽做相關(guān)的配置,但在工程中,它已經(jīng)為你自動做了,所以不需要你做任何的配置。每個方法通過或者注解表明自己的方法。

這篇文章主要介紹,如何在springboot工程作為服務(wù)器,去接收通過http 上傳的multi-file的文件。

構(gòu)建工程

為例創(chuàng)建一個springmvc工程你需要spring-boot-starter-thymeleaf和 spring-boot-starter-web的起步依賴。為例能夠上傳文件在服務(wù)器,你需要在web.xml中加入標(biāo)簽做相關(guān)的配置,但在sringboot 工程中,它已經(jīng)為你自動做了,所以不需要你做任何的配置。


    
        org.springframework.boot
        spring-boot-starter-web
    

    
        org.springframework.boot
        spring-boot-starter-test
        test
    

    
        org.springframework.boot
        spring-boot-starter-thymeleaf
    

創(chuàng)建文件上傳controller

直接貼代碼:

@Controller
public class FileUploadController {

    private final StorageService storageService;

    @Autowired
    public FileUploadController(StorageService storageService) {
        this.storageService = storageService;
    }

    @GetMapping("/")
    public String listUploadedFiles(Model model) throws IOException {

        model.addAttribute("files", storageService
                .loadAll()
                .map(path ->
                        MvcUriComponentsBuilder
                                .fromMethodName(FileUploadController.class, "serveFile", path.getFileName().toString())
                                .build().toString())
                .collect(Collectors.toList()));

        return "uploadForm";
    }

    @GetMapping("/files/{filename:.+}")
    @ResponseBody
    public ResponseEntity serveFile(@PathVariable String filename) {

        Resource file = storageService.loadAsResource(filename);
        return ResponseEntity
                .ok()
                .header(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=""+file.getFilename()+""")
                .body(file);
    }

    @PostMapping("/")
    public String handleFileUpload(@RequestParam("file") MultipartFile file,
                                   RedirectAttributes redirectAttributes) {

        storageService.store(file);
        redirectAttributes.addFlashAttribute("message",
                "You successfully uploaded " + file.getOriginalFilename() + "!");

        return "redirect:/";
    }

    @ExceptionHandler(StorageFileNotFoundException.class)
    public ResponseEntity handleStorageFileNotFound(StorageFileNotFoundException exc) {
        return ResponseEntity.notFound().build();
    }

}

這個類通過@Controller注解,表明自己上一個Spring mvc的c。每個方法通過
@GetMapping 或者@PostMapping注解表明自己的 http方法。

GET / 獲取已經(jīng)上傳的文件列表

GET /files/{filename} 下載已經(jīng)存在于服務(wù)器的文件

POST / 上傳文件給服務(wù)器

創(chuàng)建一個簡單的 html模板

為了展示上傳文件的過程,我們做一個界面:
在src/main/resources/templates/uploadForm.html




    

File to upload:
上傳文件大小限制

如果需要限制上傳文件的大小也很簡單,只需要在springboot 工程的src/main/resources/application.properties 加入以下:

   spring.http.multipart.max-file-size=128KB
   spring.http.multipart.max-request-size=128KB
測試

測試情況如圖:

參考資料

https://spring.io/guides/gs/u...

源碼下載

https://github.com/forezp/Spr...

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/71447.html

相關(guān)文章

  • SpringBoot官方教程 | 第七篇SpringBoot開啟聲明式事務(wù)

    摘要:準(zhǔn)備階段以上一篇文章的代碼為例子,即整合,上一篇文章是基于注解來實現(xiàn)的數(shù)據(jù)訪問層,這篇文章基于的來實現(xiàn),并開啟聲明式事務(wù)。創(chuàng)建實體類數(shù)據(jù)訪問層接口層用戶減塊用戶加塊,聲明事務(wù),并設(shè)計一個轉(zhuǎn)賬方法,用戶減塊,用戶加塊。 springboot開啟事務(wù)很簡單,只需要一個注解@Transactional 就可以了。因為在springboot中已經(jīng)默認(rèn)對jpa、jdbc、mybatis開啟了事事...

    tyheist 評論0 收藏0
  • SpringBoot官方教程 | 第十二篇:springboot集成apidoc

    摘要:首先聲明下,是基于注釋來生成文檔的,它不基于任何框架,而且支持大多數(shù)編程語言,為了系列的完整性,所以標(biāo)了個題。二準(zhǔn)備工作安裝完安裝它的項目源碼。輸命令輸入目錄輸出目錄是我的工程名。 首先聲明下,apidoc是基于注釋來生成文檔的,它不基于任何框架,而且支持大多數(shù)編程語言,為了springboot系列的完整性,所以標(biāo)了個題。 一、apidoc簡介 apidoc通過在你代碼的注釋來生成ap...

    xiaoxiaozi 評論0 收藏0
  • SpringBoot官方教程 | 第十四篇:在springboot中用redis實現(xiàn)消息隊列

    摘要:環(huán)境依賴創(chuàng)建一個新的工程,在其文件加入依賴創(chuàng)建一個消息接收者類,它是一個普通的類,需要注入到中。 這篇文章主要講述如何在springboot中用reids實現(xiàn)消息隊列。 準(zhǔn)備階段 安裝redis,可參考我的另一篇文章,5分鐘帶你入門Redis。 java 1.8 maven 3.0 idea 環(huán)境依賴 創(chuàng)建一個新的springboot工程,在其pom文件,加入spring-boot-...

    APICloud 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<