這篇文章主要為大家展示了“SpringBoot2如何基于Yml配置方式實(shí)現(xiàn)文件上傳邏輯”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“SpringBoot2如何基于Yml配置方式實(shí)現(xiàn)文件上傳邏輯”這篇文章吧。
創(chuàng)新互聯(lián)建站2013年開(kāi)創(chuàng)至今,先為漾濞等服務(wù)建站,漾濞等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢(xún)服務(wù)。為漾濞企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
文件上傳是項(xiàng)目開(kāi)發(fā)中一個(gè)很常用的功能,常見(jiàn)的如頭像上傳,各類(lèi)文檔數(shù)據(jù)上傳等。SpringBoot使用MultiPartFile接收來(lái)自表單的file文件,然后執(zhí)行上傳文件。該案例基于SpringBoot2.0中yml配置,管理文件上傳的常見(jiàn)屬性。該案例演示單文件上傳和多文件上傳。
org.springframework.boot spring-boot-starter-thymeleaf
1、單文件上傳
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class PageController { /** * 上傳頁(yè)面 */ @GetMapping("/uploadPage") public String uploadPage (){ return "upload" ; } }
上傳文件單個(gè)限制
max-file-size: 5MB
上傳文件總大小限制
max-request-size: 6MB
spring: application: # 應(yīng)用名稱(chēng) name: node14-boot-file servlet: multipart: # 啟用 enabled: true # 上傳文件單個(gè)限制 max-file-size: 5MB # 總限制 max-request-size: 6MB
如果單個(gè)文件大小超出1MB,拋出異常
FileSizeLimitExceededException:
如果上傳文件總大小超過(guò)6MB,拋出異常
SizeLimitExceededException:
這樣就完全驗(yàn)證了YML文件中的配置,有效且正確。
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletRequest; import java.io.File; import java.util.Map; @RestController public class FileController { private static final Logger LOGGER = LoggerFactory.getLogger(FileController.class) ; /** * 測(cè)試單個(gè)文件上傳 */ @RequestMapping("/upload1") public String upload1 (HttpServletRequest request, @RequestParam("file") MultipartFile file){ MapparamMap = request.getParameterMap() ; if (!paramMap.isEmpty()){ LOGGER.info("paramMap == >>{}",paramMap); } try{ if (!file.isEmpty()){ // 打印文件基礎(chǔ)信息 LOGGER.info("Name == >>{}",file.getName()); LOGGER.info("OriginalFilename == >>{}",file.getOriginalFilename()); LOGGER.info("ContentType == >>{}",file.getContentType()); LOGGER.info("Size == >>{}",file.getSize()); // 文件輸出地址 String filePath = "F:/boot-file/" ; new File(filePath).mkdirs(); File writeFile = new File(filePath, file.getOriginalFilename()); file.transferTo(writeFile); } return "success" ; } catch (Exception e){ e.printStackTrace(); return "系統(tǒng)異常" ; } } /** * 測(cè)試多文件上傳 */ @RequestMapping("/upload2") public String upload2 (HttpServletRequest request, @RequestParam("file") MultipartFile[] fileList){ Map paramMap = request.getParameterMap() ; if (!paramMap.isEmpty()){ LOGGER.info("paramMap == >>{}",paramMap); } try{ if (fileList.length > 0){ for (MultipartFile file:fileList){ // 打印文件基礎(chǔ)信息 LOGGER.info("Name == >>{}",file.getName()); LOGGER.info("OriginalFilename == >>{}",file.getOriginalFilename()); LOGGER.info("ContentType == >>{}",file.getContentType()); LOGGER.info("Size == >>{}",file.getSize()); // 文件輸出地址 String filePath = "F:/boot-file/" ; new File(filePath).mkdirs(); File writeFile = new File(filePath, file.getOriginalFilename()); file.transferTo(writeFile); } } return "success" ; } catch (Exception e){ return "fail" ; } } }
以上是“SpringBoot2如何基于Yml配置方式實(shí)現(xiàn)文件上傳邏輯”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!