I'm getting a 405 error from my Spring 3.2 MVC form. It's telling me POST is not supported, but both my form and controller method use it. Here is the relevant portion of my form.
<form:form commandName="bulletin" method="post" value="/processBulletin">
Here is the relevant portion of my controller.
@RequestMapping(value = "/processBulletin", method = RequestMethod.POST)
public String processBulletin(
@ModelAttribute("bulletin") Bulletin bulletin, Model model,
BindingResult result)