Spring mvc在表单中的post方法不起作用

时间:2015-10-27 17:12:45

标签: java spring

当我开始编写应用程序时,表单已提交并且 createAnnotation 方法有效。现在它不起作用。为什么? 顺便说一句,GET方法在控制器中执行,而POST则没有。

@Controller
@RequestMapping("/annotation")
public class AnnotationController {

    @RequestMapping(value = "/new", method = RequestMethod.POST)
    public String createAnnotation(@ModelAttribute Annotation annotation, BindingResult result){
        annotationService.create(annotation);
        return "redirect:/annotation/annotations.htm";
    }

}
<form action="${pageContext.request.contextPath}/annotation/new" method="post">
  <div class="form-group">
    <label for="text">Annotation name</label>
    <input type="text" class="form-control" id="text" placeholder="Annotation name" name="name"/>
  </div>
  <div class="form-group">
    <label for="date">Date:</label>
    <input type="date" class="form-control" id="date" placeholder="Date" name="date"/>
  </div>
  <div class="form-group">
    <label for="comment">Description:</label>
    <textarea class="form-control" rows="5" id="comment" name="description"></textarea>
  </div>
  <input type="hidden" name="profil.id" value="1"/>
  <input type="submit" class="btn btn-default" value="Submit"/>
</form>

1 个答案:

答案 0 :(得分:0)

我不知道为什么,但是当我在表格标签中添加此代码时,所有修复

<input type="hidden" name="${_csrf.parameterName}"
                                               value="${_csrf.token}" />

WTF ???