[Application pattern] Advice

2005-12-28 Thread Sakalareddy.T
sage- From: Aldo Vadillo Batista [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 2:58 PM To: Struts Users Mailing List Subject: Re: [Application pattern] Advice For CRUD (create, restore, update, delete) I would use a DispatchAction for each object. 2005/12/27, Xavier Vanderstukken <

Re: [Application pattern] Advice

2005-12-28 Thread Aldo Vadillo Batista
For CRUD (create, restore, update, delete) I would use a DispatchAction for each object. 2005/12/27, Xavier Vanderstukken <[EMAIL PROTECTED]>: > I need your help to design my web application using struts and hibernate. > I have several classes to save/delete/update (like user, category, > project,

[Application pattern] Advice

2005-12-27 Thread Xavier Vanderstukken
I need your help to design my web application using struts and hibernate. I have several classes to save/delete/update (like user, category, project,...). I dont know what is the best pattern to use : - 1action per object and all the operations(save,update,delete) in the same action - only on