RE: How to tell Tomcat to use an additional classpath other than web-inf/classes?

2008-08-20 Thread Dave Bender
Why not add the path to the CLASSPATH variable in the 'TOMCAT_HOME/bin/setclasspath.sh' script (or setclasspath.bat for Windows)? We've done that for getting Tomcat to recognize server-specific properties files and it seems to do the trick. Dave -Original Message- From: [EMAIL

RE: How to tell Tomcat to use an additional classpath other than web-inf/classes?

2008-08-20 Thread Caldarale, Charles R
From: Dave Bender [mailto:[EMAIL PROTECTED] Subject: RE: How to tell Tomcat to use an additional classpath other than web-inf/classes? Why not add the path to the CLASSPATH variable in the 'TOMCAT_HOME/bin/setclasspath.sh' script (or setclasspath.bat for Windows)? Because that prevents the

Re: How to tell Tomcat to use an additional classpath other than web-inf/classes?

2008-08-18 Thread David Smith
I would personally use a build tool like Maven to a) build your custom code into a jar file and b) build the final, customized app using resources from your custom code and the third party app. Then you have easy integration as new updates come out. Even if nothing else, build your stuff

Re: How to tell Tomcat to use an additional classpath other than web-inf/classes?

2008-08-18 Thread David Kramer
Since you're talking nfs, I assume you're on a *NIX OS. How about use David Smith's idea to roll your stuff into one jar file, then use a symbolic link from that one jar file on your network share to the right tomcat directory? David Smith wrote: I would personally use a build tool like

Re: How to tell Tomcat to use an additional classpath other than web-inf/classes?

2008-08-15 Thread Johnny Kewl
- Original Message - From: swimming_rabbit [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Friday, August 15, 2008 9:48 PM Subject: How to tell Tomcat to use an additional classpath other than web-inf/classes? Does anyone know of a way to tell Tomcat to use an additional