How to create validations?what are struts validation
components?
Answers were Sorted based on User's Feedback
Answer / tarun
The validation in struts is done by 2 ways. one is
programmatic validation and Declarative validation. I
programmatic validation we override the
validate(ActionMapping am, HttpServletRequest req) method
provided by ActionClass. This method returns the ActionErros.
For Example :
public ActionErrors validate(ActionMapping am,
HttpServletRequest req){
ActionErrors ae = new ActionErrors();
if(username==null ||
username.equals("")){ae.add("unameError", new
ActionMessage("uname.empty"));}
if(password==null || password.equals("")){
ae.add("passError", new ActionMessage("pass.empty"));
}else if(password.length()<5){
ae.add("passError", new ActionMessage("pass.minlength"));
}
return ae;
}
The values of pass.minlength , pass.empty, uname.empty will
be described in the properities file.
And in the case of declarative validation we extend the form
bean class from anyone of these classes DynaValidatorForm,
DynaValidatorActionForm
the first two classes are defined in
org.apache.struts.validator.*;
In this case we need validator.xml and validator-rules.xml
and properties file.
| Is This Answer Correct ? | 17 Yes | 2 No |
Answer / n.ramakrishna goud
We can create two types of validations
1).Manually
2).Automated
we can create manual validation by implementing the
validate method in ActionForm ,DynaActionForm,Validator
or DynaValidatorForm
Also ,
we can use the automated validation like
Integer,email,creditcard etc., by providing the validation
in the following xml files.,
validation.xml
validation_rules.xml
| Is This Answer Correct ? | 11 Yes | 6 No |
What do you mean by tiles in struts?
Can we have multiple struts config files ?
What do you mean by the abstract package in struts2, and what is its utilization?
Difference between ActionErrors and ActionMessage?
What are the core components of a struct2 based application?
Where can i get jar file for use the struts-tags in struts2?
collection framework hirarchy?
Can you explain value stack?
What is action support class in struts2?
What is used to display the intermediate result in an interceptor?
What is MVC Architecture?
21 Answers HCL, Hexaware, Infosys, Infrascape, Tech Mahindra,
how to develop the submit and search operations in single jsp using struts?