对于下面的控制器,我的“GET”方法有效,但我的 post 方法无效。错误是不支持“POST”方法。收到 403 禁止错误。
@RequestMapping(value="/comments/submit", method=RequestMethod.POST)
public String addComment(@ModelAttribute("comment") String comment, @ModelAttribute("blogId") int blogId, Model model, HttpServletRequest request, HttpServletResponse response)
{
try
{
Site site = new Site();
String returnString = responseMsg.getEntity(String.class);
return "ajax.html.success";
}
catch (Exception e)
{
logger.error("Exception in CommentsController.addComment()", e);
}
return "ajax.error";
}