what is diffrence between Dynaactionform,actionform and
Dynavalidateform
Answer Posted / mohd. irfan khan
All three are javaBean Class that can maintain the session
state for web application. The ActionForm object is
automatically populated on the server side with data
entered from a form on the client side.
An ActionForm/DynaValidateForm can have getter(),Setter(),
reset() and the validate() methods that can be defined in
your actionForm or in Action class itself. If any changes
are made to the properties, code need to be recompiled.
Her comes the DynaActionForm to rescue. It allows
properites to be specified in Struts-cofig.xml file there
by avoiding the recompilation of the code.Also there is no
need to have a Form Bean for every page that had getter and
setter method for each of the field on the page.
This is how it can be declared in struts config file:
<form-beans>
<form-bean name="employeeForm"
type="org.apache.struts.action.DynaActionForm">
<form-property name="fname" type="java.lang.String"/>
</form-bean>
</form-beans>
| Is This Answer Correct ? | 25 Yes | 5 No |
Post New Answer View All Answers
List the important attribute and elements of action mapping under struts.
How many Action classes have been used in your project? Differences between struts 1.1 and 1.3?
What is difference between actionform and dynaactionform?
What is difference between lookupdispatchaction and dispatchaction?
Mark the differences between html tags and strut specific html tags.
Can explain about the validations and in your project where did u used the validations?
What is apache struts used for?
What is the purpose of @doublerangefieldvalidator annotation?
What are the various struts tag libraries?
Why was reload removed from struts (since 1.1)?
Explain the core end goal while using java struts?
Explain the life cycle of a request in struct2 application?
What do struts do?
What is Custom Type Converter in Struts2?
What is the purpose of @emailvalidator?