|Home |Login |Registration |Struts Step by Step Tutorial |Hibernate Step by Step Tutorial |Spring Step by Step Tutorial |JSP Step by Step Tutorial |JDBC Step by Step Tutorial |Web Services Step by Step Tutorial |EJB fundamentals | ORACLE Step by Step Tutorial | SCJP 5.0 and SCJP 6.0 Study Guide | SCWCD 5.0 Study Guide | SCJP Tips
Java mock test | SCJP mock test | SCJP DUMP | SCBCD mock test |Java online test exam | JSP online test | ORACLE online test | Hibernate online test | Servlet online test | Struts online test | EJB online test | C online test | C++ online test | Aptitude online test

Java interview questions | JSP interview questions | ORACLE interview questions | Hibernate interview questions | Servlet interview questions | Struts interview questions | JDBC interview questions | C/C++ interview questions | Spring interview questions | JMS interview questions | Informatica interview questions | EJB interview questions | OOPS and Design Pattern interview questions
1600 PMP mock questions 1400 CAPM mock questions 800 SCJP 6 mock questions 600 OCAJP 7 mock questions 590 OCPJP 7 mock questions 556 SCWCD 5 mock questions 500 OCEJWCD 6 mock questions pdfDownload (java,struts, hibernet etc) JobsJobs and Walkins

 

Recent Questions

!!! Struts Frequently Asked Questions !!!

Q.How does validate() method of ActionForm work ?

SCJP 1.5/1.6 Exam Kit

!!!Answer!!!- From Technical Expert

<action path="/submitDetails"
type="mybank.example.CustomerAction"
name="CustomerForm"
scope="request"
validate="true"
input="CustomerDetailForm.jsp">
<forward name="success"
path="ThankYou.jsp"
redirect=?true?/>
<forward name="failure" path="error.jsp" />
</action>

RequestProcessor checks for the validate attribute in the
ActionMapping. If the validate is set to true, the RequestProcessor invokes
the validate() method on the CustomerForm instance. This is the method
where you can put all the html form data validations. If any error then
RequestProcessor checks for the input attribute in the ActionMapping
and forward to page mentioned in the input tag.
If no error in validate() method then continue.

and Validate() method looks like
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request)
{
// Perform validator framework validations
ActionErrors errors = new ActionErrors();
// Only need crossfield validations here
if (parent == null) {
errors.add(ActionErrors.GLOBAL_ERROR,
new ActionError("error.custform"));
}
if (firstName == null) {
errors.add(ActionErrors.GLOBAL_ERROR,
new ActionError("error.firstName.null"));
}
return errors;
}

where error.custform and error.firstName.null keys from Message Resource Bundle.

Answered By : null Replied Date : Jan 23 2012
Answer :


Answered By : null Replied Date : Dec 4 2011
Answer :


Answered By : null Replied Date : Dec 1 2011
Answer :


Answered By : null Replied Date : Nov 24 2011
Answer :


Answered By : null Replied Date : Aug 12 2011
Answer :


Answered By : null Replied Date : Aug 10 2011
Answer :


Answered By : null Replied Date : Jun 18 2011
Answer :


Answered By : null Replied Date : Jun 17 2011
Answer :


Answered By : null Replied Date : Jun 3 2011
Answer :


Answered By : null Replied Date : May 11 2011
Answer :


Answered By : null Replied Date : Apr 28 2011
Answer :


Answered By : null Replied Date : Apr 7 2011
Answer :


Answered By : null Replied Date : Mar 12 2011
Answer :


Answered By : null Replied Date : Mar 11 2011
Answer :


Answered By : null Replied Date : Mar 11 2011
Answer :


Answered By : null Replied Date : Mar 10 2011
Answer :


Answered By : null Replied Date : Mar 9 2011
Answer :


Answered By : null Replied Date : Mar 8 2011
Answer :


Answered By : null Replied Date : Mar 4 2011
Answer :


Answered By : null Replied Date : Feb 28 2011
Answer :


Answered By : null Replied Date : Feb 8 2011
Answer :


Answered By : null Replied Date : Jan 15 2011
Answer :


Answered By : null Replied Date : Dec 26 2010
Answer :


Answered By : null Replied Date : Dec 26 2010
Answer :


Answered By : null Replied Date : Dec 14 2010
Answer :


Answered By : null Replied Date : Nov 27 2010
Answer :


Answered By : null Replied Date : Nov 25 2010
Answer :


Answered By : null Replied Date : Nov 25 2010
Answer :


Answered By : null Replied Date : Nov 23 2010
Answer :


Answered By : null Replied Date : Nov 12 2010
Answer :


Answered By : null Replied Date : Nov 4 2010
Answer :


Answered By : null Replied Date : Oct 22 2010
Answer :


Answered By : null Replied Date : Oct 19 2010
Answer :


Answered By : null Replied Date : Oct 5 2010
Answer :


Answered By : null Replied Date : Oct 3 2010
Answer :


Answered By : null Replied Date : Aug 21 2010
Answer :


Answered By : null Replied Date : Jul 20 2012
Answer :


Answered By : null Replied Date : Jul 29 2012
Answer :


Answered By : null Replied Date : Oct 10 2012
Answer :


Answered By : null Replied Date : Oct 15 2012
Answer :


Answered By : null Replied Date : Nov 5 2012
Answer :


Answered By : null Replied Date : Nov 24 2012
Answer :


Answered By : null Replied Date : Feb 4 2013
Answer :


 

You can also contribute to this answer:

Your Name:
Answer:

 
Ask Question and get answer from Expert.
View Answers List from Expert.

The information you are posting should be related to java and ORACLE technology. Not political.