Hi,
In Spring MVC if you dont specify POST, GET, etc ... it accepts request for any of them.
Code:
@RequestMapping( value = "", method = RequestMethod.GET )
accepts only GET
Code:
@RequestMapping( value = "", method = RequestMethod.POST )
accepts only POST
Code:
@RequestMapping( value = "" )
accepts any
If I make a GET or POST the method is executed ... and goes to the JSP ... but ... jsp:include does not work if I call the controller with a POST request
And I'm not using Tiles because is a little bit overkill for my needs. But if I dont find a solution for my problem, maybe I'll try that path ...