本文介绍了在Spring MVC中重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么我不能在控制器中使用它

Why can't I get this to work in my Controller

@RequestMapping(method = RequestMethod.POST)
public String onSubmit(
    Model model,
    @ModelAttribute("form") Form form,
    BindingResult result, HttpServletRequest request)
    throws IOException, WriteException, BiffException {

    if (result.hasErrors()) {
        return "redirect:index.html";
    }

 }

我得到:

我之前有这个工作。为什么不现在?

I've got this to work before. Why not now?

推荐答案

试试这个,如果你已经正确配置你的视图解析器它应该可行

Try this, it should work if you have configured your view resolver properly

 return "redirect:/index.html";

这篇关于在Spring MVC中重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 13:13