Re: Design question: Model component using Business logic beans

2003-02-04 Thread BaTien Duong
Great. Thanks. BaTien - Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 8:49 PM Subject: Re: Design question: Mode

RE: Design question: Model component using Business logic beans

2003-02-04 Thread mech
To: Struts Users Mailing List > Cc: [EMAIL PROTECTED] > Subject: Re: Design question: Model component using Business > logic beans > > > > > On Mon, 3 Feb 2003, BaTien Duong wrote: > > > Date: Mon, 3 Feb 2003 20:02:41 -0700 > > From: BaTien Duong <[EM

Re: Design question: Model component using Business logic beans

2003-02-03 Thread Craig R. McClanahan
Subject: Re: Design question: Model component using Business logic beans > > We use chained exception from jdk1.4, commons.logging, and factoring out 4 > components that are independent on Struts [MessageResources, > MessageResourcesFactory, PropertyMessageResources, and > PropertyMes

Re: Design question: Model component using Business logic beans

2003-02-03 Thread BaTien Duong
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 11:05 AM Subject: Design question: Model component using Business logic beans > Hi, > > currently I'm doing all my business logic in my Action classes. So > besides the execute() metho

Re: Design question: Model component using Business logic beans

2003-02-03 Thread Ted Husted
Craig McClanhan wrote: > In the interim, though, you might want to investigate using > commons-resources directly for your business logic (so you don't have > to depend directly on Struts APIs) +1 What I'm doing is having the business tier bring back a MessageList and then just pumping it into

Re: Design question: Model component using Business logic beans

2003-02-03 Thread Craig R. McClanahan
On Mon, 3 Feb 2003, mech wrote: > > One thing, I'm having a bit trouble with migration is the ActionError > stuff. > One of the things we wanted to do in Struts 1.1, but ran out of time for, was to switch to using commons-resources for the underlying message resources stuff, and then build Acti

RE: Design question: Model component using Business logic beans

2003-02-03 Thread Ashish Kulkarni
Here is a > good description of the BD pattern: > http://java.sun.com/blueprints/corej2eepatterns/Patterns/BusinessDelegate.ht > ml > > > > -Original Message- > From: mech [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 03, 2003 12:05 PM > To: [EMAIL

RE: Design question: Model component using Business logic beans

2003-02-03 Thread mech
Sent: Monday, February 03, 2003 1:05 PM > To: [EMAIL PROTECTED] > Subject: Design question: Model component using Business logic beans > > > Hi, > > currently I'm doing all my business logic in my Action > classes. So besides the execute() method I might have some >

RE: Design question: Model component using Business logic beans

2003-02-03 Thread John Espey
From: mech [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 12:05 PM To: [EMAIL PROTECTED] Subject: Design question: Model component using Business logic beans Hi, currently I'm doing all my business logic in my Action classes. So besides the execute() method I might have s

RE: Design question: Model component using Business logic beans

2003-02-03 Thread Jarnot Voytek Contr AU HQ/SC
Design question: Model component using Business logic beans > > > Hi, > > currently I'm doing all my business logic in my Action classes. So > besides the execute() method I might have some helper methods like > populateFormBean() or I even put those stuff in the execute()

RE: Design question: Model component using Business logic beans

2003-02-03 Thread Pani, Gourav
your business logic but it could be an alternative path that you could opt for. -Original Message- From: mech [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 1:05 PM To: [EMAIL PROTECTED] Subject: Design question: Model component using Business logic beans Hi, currently I&#x

Design question: Model component using Business logic beans

2003-02-03 Thread mech
Hi, currently I'm doing all my business logic in my Action classes. So besides the execute() method I might have some helper methods like populateFormBean() or I even put those stuff in the execute() directly if it wasn't to much. I have to do quite a lot of database queries to populate the form b