I am currently deploying multiple tomcats for multiple applications (1:1) such as:
application1-->tomcat1 application2-->tomcat2 I would like to share a single instance of tomcat but have multiple contexts registered (/application1 and /application2) The problem is that application1 and application2 need to have seperate classpaths (due to conflicting codebases). Is there any way to deploy multiple contexts to compile from different classpaths? Right now my classpaths are being set in the tomcat startup script - I would like to have something like: <Context path="/Application1" docBase="D:\application1\root" debug="0" reloadable="false" classpath="D:\application1\codebase,D:\etc"> </Context> Is there a way of accomplishing this some other way?
