spring – 用于Multipart/form-data的POSTMAN

前端之家收集整理的这篇文章主要介绍了spring – 用于Multipart/form-data的POSTMAN前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何使用POSTMAN for Multipart / form-data,它具有自定义标题,用于测试我的控制器,该控制器将2个文件作为参数(public … controller(MultipartFile [] files))?

POST .... HTTP/1.1
.
.
.
---boundary123
Content-type:application/octet-stream
content-Disposition: form-data filenale="abc.txt" name="someuniquename"
[paylaod content](this is in xml format)
---boundary123
content-type:application/json
content-Disposition:form-data name="Metadata"
{ID:"999"}
---boundary123
最佳答案

enter image description here

在Postman中使用“Multipart / form-data”的步骤

>创建一个新选项卡@H_403_17@>插入控制器URL@H_403_17@>将方法类型设置为POST@H_403_17@>在“正文”选项卡下,选择表单数据@H_403_17@>对于作为文件的每个键,将“值类型”设置为“文件

原文链接:https://www.f2er.com/spring/432611.html

猜你在找的Spring相关文章