Java, Spring Framework MVC - redirection

后端 未结 3 723
感情败类
感情败类 2021-01-26 21:57

I am using spring framework 3. I have a form for posting comments to the article. When the form is submitted, it is checked if there any errors. In case there is no errors, cont

3条回答
  •  难免孤独
    2021-01-26 22:26

    Try using the view of the page of the "add comment" form instead of redirecting to the view that displays the new comment:

    if(result.hasErrors()) {
        return "commentForm";
    }
    

    You may also have to add @ModelAttribute Comment in the method signature...

提交回复
热议问题