這篇文章主要講解了如何測(cè)試Springboot文件上傳功能,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
從事服務(wù)器托管,服務(wù)器租用,云主機(jī),網(wǎng)站空間,域名注冊(cè),CDN,網(wǎng)絡(luò)代維等服務(wù)。
在static文件夾中創(chuàng)html頁(yè)面
內(nèi)容為:
創(chuàng)建控制器
package com.mc_74120.springbootfileupload.controller; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; import java.io.File; import java.io.IOException; @RestController public class FileUpLoadController { @PostMapping("/fileuploadContorller") public String fileUpLoadController(MultipartFile file) throws IOException { //MultipartFile對(duì)象的名稱(chēng)必須和html中的文件上傳標(biāo)簽的名字相同 System.out.println(file.getOriginalFilename()); file.transferTo(new File("d:/"+file.getOriginalFilename())); return "ok"; } }
選擇文件
發(fā)送
找到該圖片
在application配置文件中 可以配置 文件的大小和request請(qǐng)求的大小
#配置單個(gè)文件的大小
spring.servlet.multipart.max-file-size=5MB
#配置一次請(qǐng)求總?cè)萘看笮?br/>spring.servlet.multipart.max-request-size=10MB
看完上述內(nèi)容,是不是對(duì)如何測(cè)試Springboot文件上傳功能有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。