jsp class loading

2002-01-31 Thread Drinkwater, GJ (Glen)
I have written some java classes to help my servlet/jsp configuration. But the problem is that i want them to be accessable to my servlet and my jsp. i have jar the file and put them in the web-inf/lib folder and also in the java_home/jre/lib/ext folder. The servlets pick up the classes

Re: jsp class loading

2002-01-31 Thread August Detlefsen
You can put the jar in WEB-INF/lib, but to use the classes in a JSP, you have to import them in the page element: %@ page import=my.package.*, my.package.util.* % --- Drinkwater, GJ (Glen) [EMAIL PROTECTED] wrote: I have written some java classes to help my servlet/jsp configuration.