How to carryout the validations in struts if the validator
frame work cant handle the validation

Answers were Sorted based on User's Feedback



How to carryout the validations in struts if the validator frame work cant handle the validation..

Answer / srilatha ghanta

Struts supports two types of validation
1)"pro grammatical validations" ,performed using
validate()method in form bean.
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
}
validate method return type is ActionErrors ,it holds set of
ActionError objects.


2)"declarative validations" ,handled by struts frame work only.
Struts provides a XML file validator-rules.xml which
contains standard validation methods

so this fie is configured into our application like this in
struts-config.xml file using <plug-in >tag.
we are having the responsibility inform to framework which
validations only u are using in Ur applications.that
particular keys can be defined in validation.xml file.
this file also configured in struts-config.xml
<plug-in
className="org.apache.struts.validator.ValidatorPlugIn">
<set-property property="pathnames"
value="/org/apache/struts/validator/validator-rules.xml,
/WEB-INF/validation.xml" />
</plug-in>

Is This Answer Correct ?    6 Yes 1 No

How to carryout the validations in struts if the validator frame work cant handle the validation..

Answer / sitaram

There are two types of validations in Struts.
1.by using validator method in form bean.
2.by using validator.XML file in the struts. that
vlalidators are declared in validator.XML.
The validator frame work handle the validation. he
validation are declaring in validator.xml.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Struts Interview Questions

What is a custom tag?

0 Answers  


When do I need “struts.jar” on my classpath?

0 Answers  


What is the purpose of struts.xml in struct2?

0 Answers  


Explain how can we upload files in struts2 application?

0 Answers  


What is the front controller in struts2?

0 Answers  






How can we write our own interceptor and map it for action?

0 Answers  


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

2 Answers   Polaris, TCS,


What is role of action class?

0 Answers  


What are action classes in struts?

0 Answers  


What is the purpose of form-beans tag in struct-config.xml?

0 Answers  


What is difference between perform() used in struts1.0 and execute() used in 1.1 ?

3 Answers   Infotech,


How action-mapping tag is used for request forwarding in struts configuration file?

0 Answers  


Categories