Error: Servlet Jar not Loaded… Offending class: javax/servlet/Servlet.class

This is a sign of classpath pollution. The JSP/Servlet API libraries are appserver implementation dependent and belongs in case of Tomcat 6 in the Tomcat/lib folder and should in no way be moved nor duplicated somewhere else. It’s recipe for portability trouble and collisions in classloading as you’ve encountered now. The libraries in webapp have precedence in classloading. If the servlet-api.jar is encountered there, it is in turn looking for its dependencies there, but they were apparently missing in there.

You must remove any appserver-specific libraries from the webapp’s Webapp/WEB-INF/lib. You should only put webapp-specific libraries in there. Keep appserver-specific libraries in the appserver’s own default classpath, which is the Tomcat/lib in your case. Keep it untouched. You can at most add libraries which you’d like to share among all webapps in there, or even better, configure the shared.loader in Tomcat/conf/catalina.properties for that.

Also remove any appserver-specific and webapp-specific libraries from the JDK/lib and JRE/lib folders, if any. I’ve seen too often that some starters move/copy the libraries there because “it otherwise doesn’t compile”. You should never copy non-JRK/JRE-specific libraries in there. It is recipe for portability trouble as well. When compiling classes with javac, you should use the -cp argument to specify the dependent libraries.

Update: in case of an IDE (you seem to use one as you’re talking about “build path”), you need to associate the web project with an application server. In Eclipse for example, you have the option to do that during creation of a Dynamic Web Project. You need to integrate the server instance in Eclipse prior to project creation. You can do that through the Servers view (assuming that you’re using Eclipse for Java EE developers, else upgrade). You can also change it afterwards through the Servers entry in the project properties. Choose one which you’d like to use as the “default” server and then its libraries will automagically be included in the project’s build path. There’s absolutely no need to copy/move them somewhere else. See also How do I import the javax.servlet API in my Eclipse project?

Leave a Comment