Hello
I am new to spring MVC, and I am trying to set up a small application to understand the framework.
I would like to experiment other HTTP methods than GET and POST. I have tried to set up the following form in my view:
Code:
<form id="command" action="myPage.htm" method="DELETE">
<input type="submit" value="Delete" />
</form>
This does not work. When I click on the "Delete" button, the server receive a GET rather then a DELETE...
I use
- Tomcat v6.0
- jre1.6.0_03
- spring-framework-2.5.3
Is there anything special to set up to support DELETE / PUT / etc?
Thank you for any help
Best regards
Nicolas