I am using tomcat 5.5. I am trying to precompile all my JSPs using Jasper2. After my ant script runs successfully. i am trying to access my index.jsp, which gives me ClassNotFoundException. Can anyone help me resolving this?
Thanks Prachi
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Which class isn't found? Is it imported by the page? Did the precompilation produce a class file for that page?
There are no class files. All files are java files.
Prachi Deodhar
Greenhorn
Joined: Jun 13, 2006
Posts: 15
posted
0
It produces class files for tags but not for jsps.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
A ClassNotFoundException means that a class that is used by the code is missing. The exception message tells you which one it is. Make sure it's somewhere where both the Ant task and your web app can find it.