In struts how to use regurlar formbeans using validation
framework explain?
Answer / santosh kumar
if u want to use validator plug-in in ur application
->u have to call the super class validate() from ur FormBean
class validate()
ex :
public ActionErrors validate(ActionMapping
map,HttpServletRequest req)
{
ActionErrors ers=super.validate(map,req);
----------------
----------------
}
Is This Answer Correct ? | 1 Yes | 0 No |
State an example of struts configuration file as an action parameter for action servlet.
What is the difference between requestaware and servletrequestaware interface?
How to forward from Array List to Jsp in Struts ActionServlet class?
What is java struts?
Why it called struts?
Explain about the process of functioning of the struts program?
is it necessary to write struts-confing.xml ,what tags are important in that xml file?
Explain the components of struts?
What is the purpose of @expressionvalidator annotation?
Is Struts Framework part of J2EE?
what is the purpose of load_on_startup entry in struts- config.xml?
Why is action servlet a singleton in struts?