摘要:為例能夠上傳文件在服務(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)為你自動做了,所以不需要你做任何的配置。
創(chuàng)建文件上傳controllerorg.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-thymeleaf
直接貼代碼:
@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 ResponseEntityserveFile(@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
上傳文件大小限制
如果需要限制上傳文件的大小也很簡單,只需要在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
摘要:準(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開啟了事事...
摘要:首先聲明下,是基于注釋來生成文檔的,它不基于任何框架,而且支持大多數(shù)編程語言,為了系列的完整性,所以標(biāo)了個題。二準(zhǔn)備工作安裝完安裝它的項目源碼。輸命令輸入目錄輸出目錄是我的工程名。 首先聲明下,apidoc是基于注釋來生成文檔的,它不基于任何框架,而且支持大多數(shù)編程語言,為了springboot系列的完整性,所以標(biāo)了個題。 一、apidoc簡介 apidoc通過在你代碼的注釋來生成ap...
摘要:環(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-...
閱讀 2411·2021-11-16 11:44
閱讀 848·2021-09-10 11:16
閱讀 2224·2019-08-30 15:54
閱讀 1042·2019-08-30 15:53
閱讀 1894·2019-08-30 13:00
閱讀 615·2019-08-29 17:07
閱讀 3509·2019-08-29 16:39
閱讀 3135·2019-08-29 13:30