This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Struts and the fly likes Dyna Action Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Dyna Action" Watch "Dyna Action" New topic
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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Dyna Action
 
Similar Threads
Action Form,Dyna Action Form,Validator Form,DynaValidatorForm,ValidatorAction,DynaValidatorAction
Dyna Action Vs Dispatch Action
Regarding ActionForm in Struts
On Actions
Form Beaners Compared?