How to create validations?what are struts validation
components?

Answers were Sorted based on User's Feedback



How to create validations?what are struts validation components?..

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

How to create validations?what are struts validation components?..

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

Post New Answer

More Struts Interview Questions

What is Portlet???? when,where and why we use it ??

3 Answers   Infotech, Rebaca, Wipro,


What is struts2 in java?

0 Answers  


who will run the execute method in struts?

15 Answers   TCS, Wipro,


What does execandwait interceptor?

0 Answers  


what is frame work in struts?

3 Answers   Infosys,






can anybody tell.what is the difference between Forward Action and Action Forward?

2 Answers   Polaris, TCS,


What is the purpose of action-mappings tag in struct-config.xml?

0 Answers  


Why do we use struts?

0 Answers  


What is the configuration files used in struts?

0 Answers  


How to combine the struts with velocity template?

0 Answers  


Why do we need struts?

0 Answers  


Do you need an alignment after replacing struts?

0 Answers  


Categories