Windows XP Pro WebLogic 11g Tomcat 7 JDK 1.6
I've been putting supplemental JAR files in
JAVA_HOME/jre/lib/ext ( a JDK installation )
for years. It is much more convenient than altering my CLASSPATH and everything I develop has access to one set of stuff in one place.
I need a different or better approach though.
I recently installed WebLogic 11g on on my computer. Since I do not like having multiple JDKs or JVMs on my machine I set my JAVA_HOME variable to point to there.
I then put a servlet-api.jar there to compile my webapps. All was well.
Then I installed Tomcat 7. Tomcat 7 has its own servlet-api.jar in CATALINA_HOME/lib. Having a servlet-api.jar in CATALINA_HOME/lib and one in JAVA_HOME/jre/lib/ext causes Tomcat 7 to throw errors. However, I need one in JAVA_HOME/jre/lib/ext to compile my webapps.
Is there a more graceful solution than deleting servelt-api.jar from CATALINA_HOME/lib ?
Thanks
/extis not for applications. – owlstead Jun 8 '12 at 17:07