这是我的Controller使用SpringMVC,它有2个参数是"文件"和" fileDesc":
@RequestMapping(value = "/uploadfiles", method = RequestMethod.POST)
@ResponseBody
public String createResource(@RequestParam("file") MultipartFile[] files, @RequestParam("fileDesc") String fileDesc, Locale locale)
throws IOException, ServiceProcessException {...}
这是我在骡子的设计:
我不知道如何让文件在控制器中获取价值,因为我发送给Mule的数据然后在运行时指向Controler。