Re: Struts design for CRUD methods

2005-01-12 Thread Larry Meadors
Here is a good tutorial by Rick Reumann on using struts with iBATIS that could be helpful. http://www.reumann.net/struts/ibatisLesson1.do Larry On Wed, 12 Jan 2005 02:55:50 -0800, Dakota Jack <[EMAIL PROTECTED]> wrote: > On Wed, 12 Jan 2005 09:29:34 +, Mark Benussi > <[EMAIL PROTECTED]> wrot

Re: Struts design for CRUD methods

2005-01-12 Thread Dakota Jack
On Wed, 12 Jan 2005 09:29:34 +, Mark Benussi <[EMAIL PROTECTED]> wrote: >My problem is that I am having to create duplicate JSPs and actions for the > create and update processes. Hi, Mark, What makes you think you have to create different JSPs, Actions, etc.? You don't, but without knowing

Re: Struts design for CRUD methods

2005-01-12 Thread Erik Weber
Mark Benussi wrote: I have a web based application which allows the Creation, Update, Read and Deletion of Data objects (Nothing new here). All data changes are done by calling Manager methods with Action Forms to update the relevant data e.g. new ShopManager().createOrder(createOrderForm); or

Re: Struts design for CRUD methods

2005-01-12 Thread Pedro Salgado
I share the createX and editX actions form-beans "xForm" (I usually use session scope because an extra special field called "vo"). In "create action" I usually have an extra field ("vo") in my form-bean that I don¹t use. In "edit action" I must check if the "vo" exists (the bean that is be

RE: Struts design for CRUD methods

2005-01-12 Thread McDonnell, Colm (MLIM)
tion class. -Original Message- From: Mark Benussi [mailto:[EMAIL PROTECTED] Sent: 12 January 2005 09:30 To: user@struts.apache.org Subject: Struts design for CRUD methods I have a web based application which allows the Creation, Update, Read and Deletion of Data objects (Nothing new here).

Struts design for CRUD methods

2005-01-12 Thread Mark Benussi
I have a web based application which allows the Creation, Update, Read and Deletion of Data objects (Nothing new here). All data changes are done by calling Manager methods with Action Forms to update the relevant data e.g. new ShopManager().createOrder(createOrderForm); or new ShopManager.upda