I have a jsp form that is used to submit the details of users to an action, As I do not want the action class extends the user class, I need to create an object of the inputs and send it to my action, but not sure how.
- User class has a long list of parameters, if I extend it I should have all of them as parameters of my Register method.
Form
<s:form action="Register">
<s:textfield name="fname" label="Name"/>
<s:textfield name="lname" label="Surname"/>
<s:textfield name="mobile" label="Mobile"/>
.....
<s:submit validate="true"></s:submit>
</s:form>
<jsp:useBean id="obj" class="com.Users"/>
<jsp:setProperty property="*" name="obj"/>
Action
@Action
public class Registration{
public boolean Register(User obj)
{
.....
}
....