What is the DynaActionForm? How we implement the
dynaactionform ? can u please tell me the way to implement?
in understandable way?

Answer Posted / prapanch

this is to tell you in an easily understandable
way.actuallyl in struts when you enter some data in jsp's
you will declare one action form which will act like a
javabean having settes and getters for all the fields in
the jsp. from the object of the action form you can later
retrieve the data enterd by the user.

but here dynaactionform is a smart way to escape coding all
the setters and getters.you can configure the struts-
configfile so that for each and every field in your jsp one
field property will be there in the struts config file.

it will be like this for example your form has username and
password then you need to configure your config file like

<form-beans>
<form-bean name="name of the form" path="fully qualified
name for the class of the form">
<form-property name="username" type="java.lang.String"/>
<form-property name="password" type="java.lang.String"/>
</form-bean>

</form-beans>

by writing this you can avoid writing your action form it
will be useful for you generally when the form fields are
more.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the significance of logic tags in Struts?

590


What is the purpose of '@customvalidator'?

588


Why is it called struts?

544


What is the use of forwardaction?

560


What are inner class and anonymous class?

555






What is the purpose of @beforeresult annotation?

582


How action mapping is configured in Struts?

580


Why use spring, if you are already using struts?

566


Why we use struts over servlets?

530


What is the purpose of global-forwards tag in struct-config.xml?

588


What is pojo in struts2?

573


How exceptions are handled in struts application?

544


What is the difference between Jakarta Struts and Apache Struts? Which one is better to use?

588


Are interceptors thread safe?

580


Difference between html tags and struts specific html tags

521