RE: struts books

2003-07-14 Thread Jaye Bass
If these Struts books were vectors, it would take about 3 of them to span the knowledge space. On Mon, 2003-07-14 at 14:03, Yansheng Lin wrote: > I don't think so:). > > But seriously, they are all good books. But I like 'Struts in Action' better > 'cause it's a bit more detailed and the struc

RE: [OT] Use of Static Methods

2003-07-09 Thread Jaye Bass
ethod is a message to a class which is in not a procedural context. The fact that their use is less common than non-static methods does no mean they are not important. Nor are static methods and polymorphism mutually exclusive concepts. Wm. Jaye Bass Principal Software Engineer Torch Te

RE: [OT] Use of Static Methods

2003-07-09 Thread Jaye Bass
I have to disagree that static methods do not somehow fit into an OO environment. They are integral parts of the FactoryMethod, Singleton,and ServiceLocator.Also as convenience methods for conversions from one type to another they are particularly handy. Not using static methods where appropriate b

Multiboxes in Wizard Forms

2003-04-03 Thread Jaye Bass
I solved a problem that I'd been having with multiboxes and wanted to present it to the list for a sanity check. Specifically, I had a 3 page wizard that essentially edited an existing model bean. I'm using a single form bean across the three pages. The third page of the wizard had a multi-box

RE: [Design Pattern]FormBean in Model Layer

2003-03-08 Thread Jaye Bass
Use fascades or adapters to move from model to view or visa versa... -Original Message- From: harish krishnaswamy [mailto:[EMAIL PROTECTED] Sent: Saturday, March 08, 2003 9:09 PM To: Struts Users Mailing List Subject: Re: [Design Pattern]FormBean in Model Layer In our project, we have de

RE: Struts not parsing HTML correctly?

2003-03-04 Thread Jaye Bass
Actually, you can use html comments to remove tags you just have to embed them in the tag...thusly: That will be ignored by the container, browser and everything else. -Original Message- From: Thomas CORNET [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 3:04 AM To: Struts Use

RE: [OT] Text editor usage (was RE: [OT]: What is vim?)

2003-03-03 Thread Jaye Bass
First off...I'd take Mary Ann any day. Second I love IntelliJ. Does it make me a better programmer...I think it probably does: alt-enter, refactoring, multiple paste buffers, optimizing imports, finding usages, ok CVS support and a pretty decent debugger. I know it makes me a happier programmer. -

RE: deploy with ant, best practices

2003-02-28 Thread Jaye Bass
EMAIL PROTECTED] Sent: Friday, February 28, 2003 4:04 PM To: Struts Users Mailing List Subject: RE: deploy with ant, best practices On Fri, 28 Feb 2003, Jaye Bass wrote: > Date: Fri, 28 Feb 2003 13:06:33 -0600 > From: Jaye Bass <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing Li

RE: deploy with ant, best practices

2003-02-28 Thread Jaye Bass
My ant targets build directly into my webapp directories...the root location is set in an env variable. This really seems to work for us on a variety of systems (linux, windows, and occasionally macs) from development to ultimate deployment and maintenance. -Original Message- From: Dan All

idName and

2003-02-27 Thread Jaye Bass
Vitals: OS = XP JDK=1.4.1 Struts = 1.1b3 Container = Resin 2.1.6 and Resin 3.0.0 beta The idName attribute based method is not working properly for me. But first consider the following snippet from my jsp page. This works absolutely perfectly...no problems...