多部分文件上传Spring Boot
我使用Spring Boot并希望使用Controller来接收多部分文件上传。 发送文件时,我一直收到错误415不支持的内容类型响应,并且控制器永远不会到达
There was an unexpected error (type=Unsupported Media Type, status=415).
Content type 'multipart/form-data;boundary=----WebKitFormBoundary1KvzQ1rt2V1BBbb8' not supported
我试着在html / jsp页面中使用form:action发送,并且在使用RestTemplate的独立客户端应用程序中尝试发送。 所有尝试都会得到相同的结果
multipart/form-data;boundary=XXXXX not supported.
从多部分文档看来,必须将边界参数添加到分段上传中,但这似乎与接收"multipart/form-data"
的控制器不匹配
我的控制器方法设置如下
@RequestMapping(value = "/things", method = RequestMethod.POST, consumes = "multipart/form-data" ,
produces = { "application/json", "application/xml" })
public ResponseEntity<ThingRepresentation> submitThing(HttpServletRequest request,
@PathVariable("domain") String domainParam,
@RequestParam(value = "type") String thingTypeParam,
@RequestBody MultipartFile[] submissions) throws Exception
使用Bean设置
@Bean
public MultipartConfigElement multipartConfigElement() {
return new MultipartConfigElement("");
}
@Bean
public MultipartResolver multipartResolver() {
org.springframework.web.multipart.commons.CommonsMultipartResolver multipartResolver = new org.springframework.web.multipart.commons.CommonsMultipartResolver();
multipartResolver.setMaxUploadSize(1000000);
return multipartResolver;
}
正如你所看到的,我已经将consumes类型设置为“multipart / form-data”,但是当multipart被发送时,它必须有一个边界参数并放置一个随机边界字符串。
任何人都可以告诉我如何设置控制器中的内容类型以匹配或更改我的请求以匹配我的控制器设置?
我尝试发送...尝试1 ...
<html lang="en">
<body>
<br>
<h2>Upload New File to this Bucket</h2>
<form action="http://localhost:8280/appname/domains/abc/things?type=abcdef00-1111-4b38-8026-315b13dc8706" method="post" enctype="multipart/form-data">
<table width="60%" border="1" cellspacing="0">
<tr>
<td width="35%"><strong>File to upload</strong></td>
<td width="65%"><input type="file" name="file" /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Add" /></td>
</tr>
</table>
</form>
</body>
</html>
尝试2 ....
RestTemplate template = new RestTemplate();
MultiValueMap<String, Object> parts = new LinkedMultiValueMap<String, Object>();
parts.add("file", new FileSystemResource(pathToFile));
try{
URI response = template.postForLocation(url, parts);
}catch(HttpClientErrorException e){
System.out.println(e.getResponseBodyAsString());
}
尝试3 ...
FormHttpMessageConverter formHttpMessageConverter = new FormHttpMessageConverter();
formHttpMessageConverter.setCharset(Charset.forName("UTF8"));
RestTemplate restTemplate = new RestTemplate();
restTemplate.getMessageConverters().add( formHttpMessageConverter );
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());
MultiValueMap<String, Object> map = new LinkedMultiValueMap<String, Object>();
map.add("file", new FileSystemResource(path));
HttpHeaders imageHeaders = new HttpHeaders();
imageHeaders.setContentType(MediaType.MULTIPART_FORM_DATA);
HttpEntity<MultiValueMap<String, Object>> imageEntity = new HttpEntity<MultiValueMap<String, Object>>(map, imageHeaders);
ResponseEntity e= restTemplate.exchange(uri, HttpMethod.POST, imageEntity, Boolean.class);
System.out.println(e.toString());
@RequestBody MultipartFile[] submissions
应该
@RequestParam("file") MultipartFile[] submissions
这些文件不是请求主体,它们是它的一部分,没有内置的HttpMessageConverter
可以将请求转换为MultiPartFile
数组。
您也可以用MultipartHttpServletRequest
替换HttpServletRequest
,它可以访问各个部分的标题。
你可以简单地使用这样的控制器方法:
@RequestMapping(value = "/uploadFile", method = RequestMethod.POST)
@ResponseBody
public ResponseEntity<?> uploadFile(
@RequestParam("file") MultipartFile file) {
try {
// Handle the received file here
// ...
}
catch (Exception e) {
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
}
return new ResponseEntity<>(HttpStatus.OK);
} // method uploadFile
没有任何额外的Spring Boot配置。
使用下面的html表单客户端:
<html>
<body>
<form action="/uploadFile" method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="Upload">
</form>
</body>
</html>
如果你想设置文件大小的限制,你可以在application.properties
:
# File size limit
multipart.maxFileSize = 3Mb
# Total request size for a multipart/form-data
multipart.maxRequestSize = 20Mb
此外,用Ajax发送文件请看这里:http://blog.netgloo.com/2015/02/08/spring-boot-file-upload-with-ajax/
SpringBoot的最新版本使上传多个文件也非常容易。 在浏览器端,你只需要标准的HTML上传表单,但是有多个输入元素 (每个文件上传一个,这非常重要),所有元素都具有相同的元素名称(name =“files”,下面的例子)
然后在服务器上的Spring @Controller类中, 你需要的就是这样的东西:
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public @ResponseBody ResponseEntity<?> upload(
@RequestParam("files") MultipartFile[] uploadFiles) throws Exception
{
...now loop over all uploadFiles in the array and do what you want
return new ResponseEntity<>(HttpStatus.OK);
}
那些是棘手的部分。 也就是说,知道创建多个名为“files”的输入元素,并且知道使用MultipartFile [](array)作为请求参数是需要了解的棘手问题,但这很简单。 我不会介绍如何处理MultipartFile条目,因为已经有很多文档了。
链接地址: http://www.djcxy.com/p/8573.html