RE: sharing class files between applications

2001-04-15 Thread Taavi Tiirik
I know this is not the solution you're looking for, but what I do is simply define all my packages in /com/domainName/package(s)/classes. Then in the /WEB-INF/classes directory for each application, I simply make a symbolic link ( ln -s /com com). Thanks, Geoffrey. I stick for the same

sharing class files between applications

2001-04-12 Thread Taavi Tiirik
Hello, Is there a way to specify classpath for a web application so that instead of having all servlets and other class files int WEB-INF/classes I could share them between different web applications. And yes, I still want to use development=true option and have the class files compiled

Re: sharing class files between applications

2001-04-12 Thread Geoffrey Marshall
I know this is not the solution you're looking for, but what I do is simply define all my packages in /com/domainName/package(s)/classes. Then in the /WEB-INF/classes directory for each application, I simply make a symbolic link ( ln -s /com com). So far, so good. On Thursday, April 12,