有没有提供一个框架/特定的方法,让我们可以做类似于简单的Java应用程序的requestDispatcher和sendRedirect?
请建议一下方法。
发布于 2012-04-06 04:13:08
您可以像这样在spring中重定向
@RequestMapping(method = RequestMethod.POST)
public String processForm(ModelMap model) {
// process form data
model.addAttribute("notification", "Successfully did it!");
return "redirect:/form";
}https://stackoverflow.com/questions/10034804
复制相似问题