POST method handling in struts2

867 Views Asked by At

We have a form where we take some input from User and then submit that form to a Struts2 Action via HTTP POST Method.

But If we try to submit the same form with HTTP GET Method, struts2 processes the request which is not the behavior we want.

What we want to have some sort of configuration on Action level in Struts2 where we can define the HTTPMethod type that particular Action suppose to handle like in struts.xml :

<action name="ABCAction" class="foo.bar.ABCActoinClass" method="abcAction" RequestMethod="POST">
</action>

we want something like what we have in SpringMVC:

@RequestMapping(value = "/ABCController", method = RequestMethod.POSTproduces={MediaType.APPLICATION_XML_VALUE})
0

There are 0 best solutions below