Re: Share one singleton across webapps

2007-06-19 Thread Andre Prasetya
I won't be able to debug the webapps from within my IDE anymore since I am avoiding Eclipse's deployment mechanisms. Original-Nachricht Datum: Mon, 18 Jun 2007 15:40:36 +0200 Von: "Johnny Kewl" <[EMAIL PROTECTED]> An: "Tomcat Users List"

Re: Share one singleton across webapps

2007-06-19 Thread Kevin Wilhelm
t;Tomcat Users List" Sent: Monday, June 18, 2007 6:08 PM Subject: Re: Share one singleton across webapps Kevin, I dont know Eclipse, But it sound very much the same as what Netbeans does. ie it will also give every web app its own library. Being able to share, is sometimes handy, its an

Re[2]: Share one singleton across webapps

2007-06-18 Thread 吴熊敏
0:36 +0200 > Von: "Johnny Kewl" <[EMAIL PROTECTED]> > An: "Tomcat Users List" > Betreff: Re: Share one singleton across webapps > > > > > The typical form is like this > > > > public class SingletonObject > > { > >

RE: Share one singleton across webapps

2007-06-18 Thread Nelson, Tracy M.
| From: Kevin Wilhelm [mailto:[EMAIL PROTECTED] | Sent: Monday, 18 June, 2007 08:59 | | Should I use Ant for deploying then? But I won't be able to debug | the webapps from within my IDE anymore since I am avoiding Eclipse's | deployment mechanisms. You should still be able to use Eclipse, just m

Re: Share one singleton across webapps

2007-06-18 Thread Johnny Kewl
Von: "Johnny Kewl" <[EMAIL PROTECTED]> An: "Tomcat Users List" Betreff: Re: Share one singleton across webapps The typical form is like this public class SingletonObject { private SingletonObject(){} public static SingletonObject getSingletonObject()

Re: Share one singleton across webapps

2007-06-18 Thread Kevin Wilhelm
shared lib. Fantastic! By the way, what means "UAT and QA jars"? Original-Nachricht Datum: Mon, 18 Jun 2007 10:11:58 -0400 Von: "Martin Gainty" <[EMAIL PROTECTED]> An: "Tomcat Users List" Betreff: Re: Share one singleton across webapps &g

Re: Share one singleton across webapps

2007-06-18 Thread Martin Gainty
ne 18, 2007 9:58 AM Subject: Re: Share one singleton across webapps It works! Thanks! The problem has been that each webapp had its own shared-lib jar-file, because I am developing in Eclipse. So Eclipse needs to know which classes I am accessing :/ At the end there were 3 times the same ja

Re: Share one singleton across webapps

2007-06-18 Thread Kevin Wilhelm
uot;Tomcat Users List" Betreff: Re: Share one singleton across webapps > > The typical form is like this > > public class SingletonObject > { > private SingletonObject(){} > > public static SingletonObject getSingletonObject() > { > if

Re: Share one singleton across webapps

2007-06-18 Thread Johnny Kewl
PM Subject: Share one singleton across webapps I managed to get a jar file shared across two webapps in my Tomcat 6. Inside there is a class that represents a Singleton. The problem: the singleton class is instantiated by the first webapp and then again instantiated in the second webapp. So there are

RE: Share one singleton across webapps

2007-06-18 Thread Caldarale, Charles R
> From: Kevin Wilhelm [mailto:[EMAIL PROTECTED] > Subject: Share one singleton across webapps > > There has to be a way to let the first webapp instantiate the > singleton and set some property so that the second webapp can > use the singleton and read the property. How do I

Share one singleton across webapps

2007-06-18 Thread Kevin Wilhelm
I managed to get a jar file shared across two webapps in my Tomcat 6. Inside there is a class that represents a Singleton. The problem: the singleton class is instantiated by the first webapp and then again instantiated in the second webapp. So there are 2 representations of the class and it is n