| Author |
Dyna Action
|
amit bhadre
Ranch Hand
Joined: Jan 23, 2006
Posts: 124
|
|
|
When to use Dyna Action Forms? Coz I have many pages jsp's. Process becoming slow..time consuming plz tel how to use them....
|
Thanks advance who ever answers this question.
regards
amit bhadre
|
 |
Sree Kumari
Ranch Hand
Joined: Aug 16, 2005
Posts: 47
|
|
refer this url: http://www.roseindia.net/struts/DynaActionForm.shtml. in dynaAction forms instead of creating an ActionForm class we are giving the fields inside struts-config itself. eg: <form-bean name="DynaAddressForm" type="org.apache.struts.action.DynaActionForm"> <form-property name="name" type="java.lang.String"/> <form-property name="address" type="java.lang.String"/> <form-property name="email" type="java.lang.String" /> </form-bean> The form bean is of org.apache.struts.action.DynaActionForm which is a subclass of ActionFormBean
|
 |
Brent Sterling
Ranch Hand
Joined: Feb 08, 2006
Posts: 948
|
|
What is slow? Compile and deploy times or run time? - Brent
|
 |
 |
|
|
subject: Dyna Action
|
|
|