what is diffrence between Dynaactionform,actionform and
Dynavalidateform
Answer Posted / madhukiran
ActionForm will populate the properties depending on the
respective JSP fields.In this we can specify the validate()
method (if required) for validations or else you can use
ActionErrors for validating..
DynaActionForm has to be defined in Struts-config.xml and
it may have many property fields. We can use this form for
many no.of JSPs.Single dynaActionForm can serve for many
number of JSPs.
DyanValidateForm is same as DynaActionForm but we no need
to specify explicitly for the Validations. If we define a
DynaActionForm as DynaValidateForm, then it will look up of
rthe validations.
One more is there DynaValidatorActionForm which will allow
you to specify the path variable of <action> tag in
Validator.xml where as in DynaValidateForm will take
formname.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Why it called struts?
What is difference between spring and struts?
Which interceptor is responsible for mapping request parameters to action class Java Bean properties?
In which method of action class the business logic is executed?
How does struts2 token work?
What are interceptors in struts 2?
What are the core classes of struts?
What do you mean by actionform?
What is the purpose of action tag in struts.xml?
What should be the name of xml file used for validation in struts?
What is ognl?
Why are struts tightly coupled?
What is the purpose of @intrangefieldvalidator annotation?
What is the purpose of form-beans tag in struct-config.xml?
Why use struts framework in java?