Can I create two methods in the same Action Class? If so how can we specify it in the struts.xml
file ?
For example : I created a simple validation acti
Yes you can create any number of methods in an Action Class. You can do something like this
package com.myvalidation;
public class MyValidationClass extends ActionSupport
{
public String emailVerification() throws Exception
{
//Your validation logic for email validation
return SUCCESS;
}
public String passVerification() throws Exception
{
//Your validation logic for password validation
return SUCCESS;
}
}
struts.xml
/your_success_jsp.jsp
/your_error_jsp.jsp
/your_success_jsp.jsp
/your_error_jsp.jsp