我有以下资源(使用Spring 4.05.RELEASE实现),它接受一个文件和一个JSON对象:
(P.S.activityTemplate是一个可序列化的实体类)
...
@RequestMapping(value="/create", method=RequestMethod.POST)
public @ResponseBody ActivityTemplate createActivityTemplate(
@RequestPart ActivityTemplate activityTemplate, @RequestPart MultipartFile jarFile)
{
//process the file and JSON
}
...
这是我测试的表格:
<form method="POST" enctype="multipart/form-data"
action="http://localhost:8080/activityTemplates/create">
JSON: <input type="text" name="activityTemplate" value='/* the JSON object*/'><br />
File to upload: <input type="file" name="file">
<input type="submit" value="Upload">
</form>
这是我得到的错误:
There was an unexpected error (type=Unsupported Media Type, status=415).
Content type 'application/octet-stream' not supported
那么,我应该如何让资源接受JSON对象作为多部分请求的一部分,还是应该以不同的方式发送表单?
您没有为您的@RequestParts提供参数名称吗?
public @ResponseBody ActivityTemplate createActivityTemplate(
@RequestPart("activityTemplate") ActivityTemplate activityTemplate, @RequestPart("file") MultipartFile jarFile)
{
//process the file and JSON
}
注意:不要忘记包括jackson mapper。类路径中的jar(将Json映射到ActivityTemplate)文件。
希望这对你有帮助。您需要在请求中设置边界以通知HTTP请求。是简单的;在下面的链接中可以找到多部分格式的简要介绍
HTML 4.01多部分规范
以下示例说明了“多部分/表单数据”编码。如果Json对象是“MyJsonObj”,需要发送的文件是“myfile.txt”,那么用户代理可能会发回以下数据:
Content-Type: multipart/form-data; boundary=MyBoundary
--MyBoundary
Content-Disposition: form-data; name="myJsonString"
Content-Type: application/json
MyJsonObj //Your Json Object goes here
--MyBoundary
Content-Disposition: form-data; name="files"; filename="myfile.txt"
Content-Type: text/plain
... contents of myfile.txt ...
--MyBoundary--
或者,如果您的文件是名称为“image.gif”的图像类型,
--MyBoundary
Content-Disposition: file; filename="image.gif"
Content-Type: image/gif
Content-Transfer-Encoding: binary
...contents of image.gif...
--MyBoundary--
您可以在内容类型标题中指定边界,以便服务器知道如何分割发送的数据。
因此,您基本上需要选择一个边界值:
这花了我两天的时间为我工作!
客户端(角度):
$scope.saveForm = function () {
var formData = new FormData();
var file = $scope.myFile;
var json = $scope.myJson;
formData.append("file", file);
formData.append("ad",JSON.stringify(json));//important: convert to string JSON!
var req = {
url: '/upload',
method: 'POST',
headers: {'Content-Type': undefined},
data: formData,
transformRequest: function (data, headersGetterFunction) {
return data;
}
};
Spring(防尘套):
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public @ResponseBody
Advertisement storeAd(@RequestPart("ad") String adString, @RequestPart("file") MultipartFile file) throws IOException {
Advertisement jsonAd = new ObjectMapper().readValue(adString, Advertisement.class);
//do whatever you want with your file and jsonAd
我正在传递多部分文件与其他用户信息。无法将类型的属性值转换为属性嵌套异常为 下面的代码我已经试过了 控制器类 @RequestMapping(value=RestMappingURLS.user.saveUser,headers={“Content-Type=Multipart/Mixed”,“Content-Type=Multipart/Form-Data”})public RestRespon
想在POSTMAN中测试post请求。 Spring MVC控制器 我想送SchoolDto(邮递员:尸体- 请帮忙。
我是web服务新手,正在阅读Martin Kalin的《Java Webservices》一书。我已经了解了它最初的基本概念,有一个问题: 假设将HTTP请求(包含SOAP消息信封)发送到JavaWeb服务()。该请求是否由Servlet内部处理,Servlet提取SOAP消息并将其转换为相应Java域对象,然后调用服务实现bean? 无论Metro和Axis等现成框架如何,这个问题都是通用的。只
问题内容: 这是我到目前为止所拥有的: 这将初始化我的REST服务 我的服务如下所示: 我尝试将添加到中,但仍然出现异常: 在没有多部分配置的情况下调用Request.getParts。 在servlet中添加@MultipartConfig或在web.xml中添加multipart-config元素 。 谢谢 问题答案: 最终,我在没有Jersey耦合的情况下设法解决了这一问题。问题是注释不能与
我是vapor的初学者,我选择vapor 3-rc作为开始,因为它似乎打破了vapor 2的变化。不幸的是,目前还没有完整的文档。 我目前正在尝试将一个简单的txt文件从Postman上传到我的Vapor 3本地服务器。 这是我的路线 和我的控制器 首先,通过执行邮递员请求,服务器返回: 通过研究源代码和关于此的有限文档,我似乎应该声明一个解码器来支持多部分传入请求。 所以我做到了: 我使用For