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.
単純なJavaEEMVCアプリケーションと同様にrequestDispatcherとsendRedirectを実行できるフレームワーク提供/特定の方法はありますか?
方法を提案してください。
このように春にリダイレクトできます
@RequestMapping(method = RequestMethod.POST) public String processForm(ModelMap model) { // process form data model.addAttribute("notification", "Successfully did it!"); return "redirect:/form"; }