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
State an example of struts configuration file as an action parameter for action servlet.
How can we write our own interceptor and map it for action?
what is ACID test for fresh engineers??what is the pattern??
How can we integrate log4j in Struts2 application?
What configuration files are used in struts?
Describe the two types of formbeans.
What is the difference between empty default namespace and root namespace?
What is struts and why it is used?
What is includeaction?
How can link tag’s action attribute be used?
What kind of mvc is struts 2?
What is the purpose of execute() method?
What configuration changes are required to use resource files in Struts?
Explain the components of struts?
How do I access token?