4

我无法使用 RestTemplate 发布 2 个参数:

  • 一个字符串
  • 多部分文件

我认为我的控制器没有问题,因为它非常基本。控制器似乎没有收到 name 参数。你能告诉我我的代码有什么问题吗

控制器(接收器)

@RequestMapping(value="/fileupload", method=RequestMethod.POST)
public void handleFileUpload(@RequestParam("name") String fileUploadHandlerName,
                             @RequestParam("file") MultipartFile file)
{
    [...]
}

Rest 客户端(发送者)

RestTemplate rest = new RestTemplate();
URI uri = new URI("http://127.0.0.1:7011/xxxxxxxx/admin/fileupload");

MultiValueMap<String, Object> parts = new LinkedMultiValueMap<String, Object>();
parts.add("name", "import_keys");
Resource file = new ClassPathResource("xmlFileImport/file.xml");
parts.add("file", file);

rest.postForLocation(uri, parts);

控制器堆栈跟踪

org.springframework.web.bind.MissingServletRequestParameterException:必需的字符串参数“名称”不存在

4

1 回答 1

5

处理多部分请求是一个复杂的过程。不是读取请求参数那么简单。因此,Spring 要求您声明 aMultipartResolver以便它可以解析和处理此类请求。您可以在applicationContext.xml文件中执行此操作:

<bean id="multipartResolver"  
    class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
    <property name="maxUploadSize">  
        <value> <YOUR_SIZE> </value>  
    </property>  
    <property name="maxInMemorySize">  
        <value> <YOUR_SIZE> </value>  
    </property>      
</bean>

解析您的请求并拆分部分的实现在哪里CommonsMultipartResolver,以便您的控制器可以找到普通的请求参数和上传的文件。

于 2013-04-26T15:07:20.427 回答