On 8/25/05, Kade Jeevan Kumar <[EMAIL PROTECTED]> wrote:
> OBJECT MAINTENANCE
> 
> When i went through implementing Struts for my project it really sucks as the 
> number of objects for each functionality is excedded as each functionality in 
> my project is totally differ from other functionalities.
> 
> what is your concern about Object Maintenance.  Is there any better way for 
> object maintenance.

There are ways that you can use to reduce the number of Struts objects
in your application.  For instance, DispatchAction and its subclasses,
as well as ActionDispatcher, can help your combine related Action
classes.  For form beans, you can take a look at dynamic forms that
don't require you to declare a class at all.

DispatchAction (also check its Direct Known Subclasses):
http://struts.apache.org/api/org/apache/struts/actions/DispatchAction.html

ActionDispatcher:
http://struts.apache.org/api/org/apache/struts/actions/ActionDispatcher.html

DynaActionForm classes:
http://struts.apache.org/userGuide/building_controller.html#dyna_action_form_classes


Hubert

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to