In struts how to use regurlar formbeans using validation
framework explain?
Answer Posted / 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 |
Post New Answer View All Answers
Why we use struts in java?
What is difference between spring and struts?
What are the custom tags?
How the exceptions are handled in struts?
Can explain about the validations and in your project where did u used the validations?
How can we group related actions in one group in Struts?
How is the action mapping specified?
What is the purpose of @keyproperty annotation annotation?
What is difference between lookupdispatchaction and dispatchaction?
Explain about the future of struts?
Can we use struts and spring together?
Explain about tiles?
Explain about the library tag?
How is declarative handling of exceptions done in struts ?
What is the purpose of execute() method?