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 '/bin/setclasspath.sh' script (or > setclasspath.bat for Windo

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 '/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 PROTECTED] [mailto:

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 Mave

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 into

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: 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 classpath (other than WE