The JSPs in Tomcat's ROOT webapp have been pre-compiled and each has a
servlet entry in the web.xml file. Look for servlet entries that have a jsp-file node instead of a servlet-class node.
Rather than try to edit that app, you might want to create your own to work with.
It's quick and easy.
Simply:
Create a folder under tomcat/webapps (myapp).
Inside that folder create another one one named WEB-INF (myapp/WEB-INF)
That's it, you're done.
You can put JSPs in the myapp directory and access it with:
http://localhost:8080/myapp/mypage.jsp Another quick way to get started is to download one of the war files from our
codebarn to the webapps directory.
Tomcat will unpack and deploy it for you. You will then have a working app with a deployment descriptor and proper directory structure.
[ September 21, 2007: Message edited by: Ben Souther ]