私のコントローラーには次の方法があります
@RequestMapping(value = "processPurchase/{poid}", method = RequestMethod.DELETE)
public String processOrder(@PathVariable int poid) {
// do some processing
return acceptPurchaseForm;
}
私のHTML
<form id="purchase-list-form" class="form-horizontal" action="/MyNewApp/processPurchase/" method="post">
<input type="hidden" name="_method" value="delete">
<input type="hidden" name="poid" value="">
上記でも、次のエラーが発生します
WARN : org.springframework.web.servlet.PageNotFound - Request method 'DELETE' not supported
助けていただければ幸いです。