4

是否有提供框架/特定方式,我们可以执行 requestDispatcher 和 sendRedirect 类似于简单的 Java EE MVC 应用程序?

请提出方法。

4

1 回答 1

4

你可以像这样在春天重定向

@RequestMapping(method = RequestMethod.POST)
    public String processForm(ModelMap model) {            
        // process form data

        model.addAttribute("notification", "Successfully did it!");
        return "redirect:/form";
    }
于 2012-04-05T20:13:08.120 回答