Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有提供框架/特定方式,我们可以执行 requestDispatcher 和 sendRedirect 类似于简单的 Java EE MVC 应用程序?
请提出方法。
你可以像这样在春天重定向
@RequestMapping(method = RequestMethod.POST) public String processForm(ModelMap model) { // process form data model.addAttribute("notification", "Successfully did it!"); return "redirect:/form"; }