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 |
How many struts config file can be created in struts?
What is the purpose of @before?
What is struts framework in java?
can we change the order of parameters in execute()?
What is struts actionmapping?
What are the sections into which a strut configuration file can be divided?
What is Request Dispatcher and What is reuest Processor??
Difference between ActionErrors and ActionMessage?
What is the use of reset method of ActionForm class?
How to carryout the validations in struts if the validator frame work cant handle the validation
What is the difference between struts and spring? Explain
When should we use SwtichAction?