2
我從形式發送到春:狀態405.請求方法 'POST' 不支持
<form name='recoverForm' action="<c:url value='recover'/>" method='POST'>
春天行動:
@Controller
@RequestMapping(value = "recover")
public class RecoverController {
@RequestMapping(method = RequestMethod.GET)
public String recoverPage(Map<String, Object> model) {
return "recover"; //this works
}
@RequestMapping(method = RequestMethod.POST)
public String recover(Map<String, Object> model) {
System.out.println("_____________recover in action");
return "home"; //error 405
}
,但我得到錯誤405 - 請求方法 'POST' 不支持的。
爲什麼呢?我發送post request
和控制器有一個post方法是不是?
貴'GET'工作? – timothyclifford
@timothyclifford是的,它的工作原理 – thinker
當你的應用程序啓動時,你能看到映射到日誌中的POST路由嗎? – timothyclifford