reloading applications - classes stay in memory?

2003-03-04 Thread Marc Dumontier
Hi, I'm using the ant task to reload my web application during development. The problem is that I have a huge run time library (takes about 45 seconds to load up the class itself). The static block is executed each time i reload (these are not servlets - they are JAXB generated classes). Is

Re: reloading applications - classes stay in memory?

2003-03-04 Thread Jacob Kjome
Put those classes in one of the shared classloaders... common/lib common/classes shared/lib shared/classes They will load once per server startup no matter how many times your apps are reloaded. Jake At 04:32 PM 3/4/2003 -0500, you wrote: Hi, I'm using the ant task to reload my web

Re: reloading applications - classes stay in memory?

2003-03-04 Thread Will Hartung
From: Marc Dumontier [EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 1:32 PM Subject: reloading applications - classes stay in memory? Hi, I'm using the ant task to reload my web application during development. The problem is that I have a huge run time library (takes about 45 seconds