我的 Spring 3.2 MVC 表单出现 405 错误。它告诉我不支持 POST,但我的表单和控制器方法都使用它。这是我表格的相关部分。
<form:form commandName="bulletin" method="post" value="/processBulletin">
这是我的控制器的相关部分。
@RequestMapping(value = "/processBulletin", method = RequestMethod.POST)
public String processBulletin(
@ModelAttribute("bulletin") Bulletin bulletin, Model model,
BindingResult result)