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
What are disadvantages of Struts?
Which class of struts is responsible to converts data types from string and vice versa?
What is spring and struts in java?
How does interceptor work in struts2?
Are actions thread safe?
Which model components are supported by Struts?
What is the purpose of @emailvalidator annotation?
How many struts config file in a struts application?
What is struts validator framework?
Give an example where struts tiles may be used?
Is struts action class singleton?
How action mapping is configured in Struts?
How to get data from the velocity page in a action class?
What is execute method in struts?
How to handle exceptions in structs?