摘要:為例能夠上傳文件在服務器,你需要在中加入標簽做相關的配置,但在工程中,它已經為你自動做了,所以不需要你做任何的配置。每個方法通過或者注解表明自己的方法。
這篇文章主要介紹,如何在springboot工程作為服務器,去接收通過http 上傳的multi-file的文件。
構建工程為例創建一個springmvc工程你需要spring-boot-starter-thymeleaf和 spring-boot-starter-web的起步依賴。為例能夠上傳文件在服務器,你需要在web.xml中加入標簽做相關的配置,但在sringboot 工程中,它已經為你自動做了,所以不需要你做任何的配置。
創建文件上傳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 / 獲取已經上傳的文件列表
GET /files/{filename} 下載已經存在于服務器的文件
POST / 上傳文件給服務器
創建一個簡單的 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...
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/71447.html
摘要:準備階段以上一篇文章的代碼為例子,即整合,上一篇文章是基于注解來實現的數據訪問層,這篇文章基于的來實現,并開啟聲明式事務。創建實體類數據訪問層接口層用戶減塊用戶加塊,聲明事務,并設計一個轉賬方法,用戶減塊,用戶加塊。 springboot開啟事務很簡單,只需要一個注解@Transactional 就可以了。因為在springboot中已經默認對jpa、jdbc、mybatis開啟了事事...
摘要:首先聲明下,是基于注釋來生成文檔的,它不基于任何框架,而且支持大多數編程語言,為了系列的完整性,所以標了個題。二準備工作安裝完安裝它的項目源碼。輸命令輸入目錄輸出目錄是我的工程名。 首先聲明下,apidoc是基于注釋來生成文檔的,它不基于任何框架,而且支持大多數編程語言,為了springboot系列的完整性,所以標了個題。 一、apidoc簡介 apidoc通過在你代碼的注釋來生成ap...
摘要:環境依賴創建一個新的工程,在其文件加入依賴創建一個消息接收者類,它是一個普通的類,需要注入到中。 這篇文章主要講述如何在springboot中用reids實現消息隊列。 準備階段 安裝redis,可參考我的另一篇文章,5分鐘帶你入門Redis。 java 1.8 maven 3.0 idea 環境依賴 創建一個新的springboot工程,在其pom文件,加入spring-boot-...
閱讀 2436·2021-11-16 11:44
閱讀 860·2021-09-10 11:16
閱讀 2234·2019-08-30 15:54
閱讀 1067·2019-08-30 15:53
閱讀 1914·2019-08-30 13:00
閱讀 626·2019-08-29 17:07
閱讀 3521·2019-08-29 16:39
閱讀 3142·2019-08-29 13:30