0
我有幾個文件以HTML格式上傳。使用Spring的多個文件進程
<label for="app_snapshot_image_1">SNAPSHOT_1</label>
<input type="file" name="app_snapshot_image_1" id="app_snapshot_image_1" />
<label for="app_snapshot_image_2">SNAPSHOT_2</label>
<input type="file" name="app_snapshot_image_2" id="app_snapshot_image_2" />
<label for="app_snapshot_image_2">SNAPSHOT_3</label>
<input type="file" name="app_snapshot_image_3" id="app_snapshot_image_3" />
這是彈簧控制器處理的multipart從Web請求。
@RequestMapping(value="/apps/addOrModify/", method=RequestMethod.POST)
public String testUpload(
@RequestParam(required=false) MultipartFile app_snapshot_image_1,
@RequestParam(required=false) MultipartFile app_snapshot_image_2,
@RequestParam(required=false) MultipartFile app_snapshot_image_3) {
...
}
然而,上述控制器可僅處理3從app_snapshot_image_1名爲3個文件;但這不是我想要的。我想用Controller來處理無限制的文件。
希望你明白我的問題,併爲我的小英文感到抱歉。
如果它真的幫助了你,請提出答案。 :-) –