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
Is struts 1 still supported?
how to get the last 10 elements using logic:iterate in struts with hiernate from database.
What are the ways in which duplicate form submission can occur?
What are action errors?
What is validate() and reset() functions?
How you will enable front-end validation based on the xml in validation.xml?
How is forward action used for integration?
What is the purpose of @result?
What is struts2 namespace?
Explain design patterns which is used in struts?
What is the purpose of @urlvalidator annotation?
Why was reload removed from struts (since 1.1)?
What configuration changes are required to use resource files in Struts?
What is role of actionservlet?
What is struts framework in java?