Deploying my JSP
My program runs fine locally, as a non JSP application. It uses the CsvReader library javacsv.jar, and one of my files imports "com.csvreader.CsvReader" from this library.
When I try running it as a JSP application, it gives me a NoClassDefFound for "com.csvreader.CsvReader" class. I added the library to my Classpath, and I even put the jar in the WEB-INF/lib directory. Is there something else I need to do for it to execute this library correctly?

