溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

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

發(fā)布時(shí)間:2020-07-28 14:01:37 來(lái)源:億速云 閱讀:153 作者:小豬 欄目:編程語(yǔ)言

這篇文章主要講解了如何測(cè)試Springboot文件上傳功能,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

在static文件夾中創(chuàng)html頁(yè)面

內(nèi)容為:

<html>
<head></head>
<body>
<form action="/fileuploadContorller" method="post" enctype="multipart/form-data">
  <input type="file" name="file"/>
  <input type="submit" value="提交">
</form>
</body>
</html>

創(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ì)象的名稱必須和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)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI