Re: static initialization

2002-12-23 Thread Yong How
To: [EMAIL PROTECTED] Subject: static initialization Hi all, I have a Helper class which has several methods. Each method willspeak overto the DB and get the values as ArrayList. These values will be loaded in the HTML pages as option values of the select boxes. Here is the sample code snippet i ha

Re: static initialization

2002-12-20 Thread Eric Noriega
Look into the caching taglib on tomcat. It's simpler to set up and has the added benefit of caching the processed data, instead of just the source. Else I would suggest using a RowSet instead. Kesavanarayanan, Ramesh (Cognizant) wrote: Hi all, I have a Helper class which has several method

Re: static initialization

2002-12-19 Thread Jayant Kataria
Hi, How about using a Vector in place of an ArrayList? regards Jayant -Original Message- From: Kesavanarayanan, Ramesh (Cognizant) [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 10:26 AM To: [EMAIL PROTECTED] Subject: static initialization Hi all, I have a Helper class

static initialization

2002-12-19 Thread Kesavanarayanan, Ramesh (Cognizant)
Hi all, I have a Helper class which has several methods. Each method willspeak overto the DB and get the values as ArrayList. These values will be loaded in the HTML pages as option values of the select boxes. Here is the sample code snippet i have used . I have made the OWNER_LIST as private s