真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何測(cè)試Springboot文件上傳功能

這篇文章主要講解了如何測(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";
  }
}

選擇文件

如何測(cè)試Springboot文件上傳功能

發(fā)送

找到該圖片

如何測(cè)試Springboot文件上傳功能

在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è)資訊頻道。


名稱(chēng)欄目:如何測(cè)試Springboot文件上傳功能
網(wǎng)頁(yè)鏈接:http://weahome.cn/article/jeeghi.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部