views:

32

answers:

1

I am running Eclipse with Tomcat 5.5.

My dynamic web site project includes some JAVA code that needs external jar files. Where should I place those jar files so Apache will not giving me errors such as java.lang.ClassNotFoundException ?

Thanks on this.

+2  A: 

Put them in the WEB-INF/lib of your web context, of course.

duffymo
Thanks, works as it should!
Aliens