Used by Spring 4.3.4.

<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %> <form:form> </form:form> 

Token is substituted.
When sending requests using the POST method, I get the corresponding response: "HTTP Status 405 - Request method 'POST' not supported"

If you use Spring version 4.2.4 then this problem does not arise.
Is there a solution?

  • What? What request? Is the mapper a request for the post? - GenCloud
  • by POST method, everything is forwarded. I repeat: 4.2.4 handles everything correctly, and 4.3.4 does not work under the same conditions. - xrk
  • @xrk then use 4.2.4 - Senior Pomidor
  • Show the controller code. - Roman
  • need to add type="POST" to the form - Bohdan Korinnyi

0