3

我正在使用 Spring MVC 3,并且我有以下控制器

@RequestMapping(value="FileUploadForm",method=RequestMethod.GET)
public String showForm(ModelMap model){
    UploadForm form = new UploadForm();
    model.addAttribute("FORM", form);
    return "FileUploadForm";
}

@RequestMapping(value="FileUploadForm",method=RequestMethod.POST)
public ModelAndView processForm(@ModelAttribute(value="FORM") UploadForm form,BindingResult result){
    if(!result.hasErrors()){
        FileOutputStream outputStream = null;
        String filePath = System.getProperty("java.io.tmpdir") + "/" + form.getFile().getOriginalFilename();
        try {
            outputStream = new FileOutputStream(new File(filePath));
            outputStream.write(form.getFile().getFileItem().get()); 
            outputStream.close();
            System.out.println(form.getName());


             return new ModelAndView(new RedirectView("success?Filepath="+filePath, true, true, false));
        } catch (Exception e) {
            System.out.println("Error while saving file");
            return new ModelAndView("FileUploadForm");
        }

    }else{
        return new ModelAndView("FileUploadForm");
    }

}

该控制器获取文件路径并用于爆炸

@RequestMapping(value="success")
public String blasta(@ModelAttribute("Filepath") String filepath, Model model){
    Blast sb = new Blast("somepath");
    String[] blastIt = sb.blast("somepath", filepath);
    String newLine = System.getProperty("line.separator");
    ArrayList<Object> result = new ArrayList<>();

    for (int i = 5; i < blastIt.length; i++) {
        if(blastIt[i].startsWith("Lambda")){
            break;
        } else {
            seila.add(blastIt[i]);
            System.out.println(blastIt[i]);
        }
        model.addAttribute("RESULT", result);

    }      
    File f1 = new File(filepath);
    f1.delete();
    return "success";

}

一切正常,但我仍然在 url 中获得文件路径。

http://localhost:8081/Ambase/success?Filepath=filePath

如果可能的话,我想要这种方式

http://localhost:8081/Ambase/success
4

2 回答 2

3

尝试将此代码添加到servlet-config.xml

<mvc:annotation-driven ignoreDefaultModelOnRedirect="true" />
于 2016-04-08T05:46:26.380 回答
0

为避免此问题,您应该使用RedirectAttributes. 它将 filePath 的值添加到重定向视图参数中,您可以在控制器中获取它blasta

为此,您需要在控制器函数processForm中再添加一个参数。在所有参数的末尾添加RedirectAttributes attributes,然后在 RedirectView 语句上方添加以下行。

attributes.addFlashAttribute("Filepath",filePath);

然后你可以在blasta控制器函数里面的ModelMap中得到这个属性。

希望这对您有所帮助。干杯。

于 2012-09-28T05:21:00.680 回答