Hrishikesh Maluskar wrote:Can we call two different methods based on the same action in Struts2.
The methods will be called when two different buttons are clicked , for example login button and register button are on the same JSP page.
When we click on login button doLogin() method should be called and when we click on register button doRegister() method should be called.
then..you can use DispatchAction . Extend the DispatchAction in your action class.
And also configure accordingly in struts-config.xml, have parameter="method" as Joe Said..
Read about
struts DispatchAction.that will be helpful.