我正在将Java Web应用程序转换为Spring框架,并对我在文件上传时遇到的问题提出一些建议。原始代码是使用org.apache.commons.fileupload编写的。
Spring MultipartFile是否包装了org.apache.commons.fileupload,或者我可以从我的POM文件中排除这种依赖关系?
我见过以下示例:
@RequestMapping(value = "/form", method = RequestMethod.POST)
public String handleFormUpload(@RequestParam("file") MultipartFile file) {
if (!file.isEmpty()) {
byte[] bytes = file.getBytes();
// store the bytes somewhere
return "redirect:uploadSuccess";
} else {
return "redirect:uploadFailure";
}
}
最初我试图按照这个例子但总是收到一个错误,因为它找不到这个请求参数。所以,在我的控制器中,我做了以下事情:
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public @ResponseBody
ExtResponse upload(HttpServletRequest request, HttpServletResponse response)
{
// Create a JSON response object.
ExtResponse extResponse = new ExtResponse();
try {
if (request instanceof MultipartHttpServletRequest)
{
MultipartHttpServletRequest multipartRequest =
(MultipartHttpServletRequest) request;
MultipartFile file = multipartRequest.getFiles("file");
InputStream input = file.getInputStream();
// do the input processing
extResponse.setSuccess(true);
}
} catch (Exception e) {
extResponse.setSuccess(false);
extResponse.setMessage(e.getMessage());
}
return extResponse;
}
它正在发挥作用。如果有人能告诉我为什么@RequestParam不适合我,我会很感激。顺便说一下,我确实有
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="2097152"/>
</bean>
在我的servlet上下文文件中。
答案 0 :(得分:2)
MultipartFile
作为方法参数,而不是@RequestParam(..)
答案 1 :(得分:2)
我不得不
<form:form method="POST" action="/form" enctype="multipart/form-data" >
让它发挥作用。
答案 2 :(得分:1)
这适合我。
@RequestMapping(value = "upload.spr", method = RequestMethod.POST)
public ModelAndView upload(@RequestParam("file") MultipartFile file, HttpServletResponse response)
{
// handle file here
}
答案 3 :(得分:0)
请求参数的一般语法是@RequestParam(value =“Your value”,required = true), 模式超过请求参数用于获取URL的值。
答案 4 :(得分:0)
在POST中,您只会在请求正文中发送参数,而不是在URL中(您使用@RequestParams)
这就是为什么你的第二种方法有效。
答案 5 :(得分:0)
在Spring MVC 3.2中引入了对Servet 3.0的支持。因此,如果使用早期版本的Spring,则需要包含commons-file upload。