gpt4 book ai didi

springboot多文件上传实现使用postman测试多文件上传接口

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章springboot多文件上传实现使用postman测试多文件上传接口由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

使用postman测试多文件上传接口

1、创建测试类(FileController.java)

package com.jeff.controller;import java.io.File;import java.io.IOException;import java.util.List;import org.springframework.web.bind.annotation.PostMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.RestController;import org.springframework.web.multipart.MultipartFile;@RestControllerpublic class FileController {	@PostMapping("/upload")	public String upload(@RequestParam("files") List<MultipartFile> files) {		if (files.isEmpty()) {			return "上传失败,未选择文件";		}		for (MultipartFile file : files) {			String fileName = file.getOriginalFilename();			// 获取文件后缀名			String suffixName = fileName.substring(fileName.lastIndexOf("."));			// 重新生成文件名			String fName = System.currentTimeMillis() + suffixName;			System.out.println("文件名:" + fName);			String filePath = "F:\\Jeff\\project\\workspace\\mavenDemo\\src\\main\\resources\\static\\";			File dest = new File(filePath + fName);			try {				file.transferTo(dest);				System.out.println(fName + "上传成功!");			} catch (IOException e) {				System.out.println(fName + "上传异常!" + e);				return "error";			}		}		return "success";	}}

2、使用postman测试多文件上传接口(选择多个文件)

springboot多文件上传实现使用postman测试多文件上传接口

3、查看项目路径

springboot多文件上传实现使用postman测试多文件上传接口

4、如果报下图错误,请查看 解决方法

springboot多文件上传实现使用postman测试多文件上传接口

解决方法:The field files exceeds its maximum permitted size of 1048576 bytes

springboot多文件上传实现使用postman测试多文件上传接口

错误原因:

SpringBoot的默认上传文件的大小是1M,如果上传的文件超过了1M就会出现这样的错误 。

解决方法:

在application.properties配置文件中设置上传的文件大小限制,即可解决 。

# 上传文件总的最大值spring.servlet.multipart.max-request-size=10MB# 单个文件的最大值spring.servlet.multipart.max-file-size=10MB

springboot多文件上传实现使用postman测试多文件上传接口

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.

原文链接:https://blog.csdn.net/weixin_45739720/article/details/103724064 。

最后此篇关于springboot多文件上传实现使用postman测试多文件上传接口的文章就讲到这里了,如果你想了解更多关于springboot多文件上传实现使用postman测试多文件上传接口的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com