2012-04-05 13 views

Antwort

4

Sie im Frühjahr umleiten kann wie folgt

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

     model.addAttribute("notification", "Successfully did it!"); 
     return "redirect:/form"; 
    }