I am running my app on google app engine. All I have is a simple servlet that is trying to use Jsoup. However when I run the application I get java.lang.ClassNotFoundException: org.jsoup.Jsoup.
I am using Eclipse so I added the jsoup jar file in the Java Build Path -> Libraries
You need to put the Jsoup JAR file in the
/WEB-INF/libfolder of the webapp. That folder is covered by webapp’s default classpath. Also, Eclipse will automagically put all libraries in/WEB-INF/libfolder in the buildpath of the project, you shouldn’t need to do that manually. Of course I assume that the project is been created as Dynamic Web Project.