There is no need to change web.xml for a jsp file(except for some cases when you are mapping its name to a servlet like this
<servlet-name>InitTestServlet</servlet-name>
<jsp-file>/initTest.jsp</jsp-file>)
Keep all the jsp files inside Test directory directly,start tomcat,then in the url type
http://localhost:8080/Test/yourjsppage.jsp or make a index.jsp and keep it inside Test directory,start tomcat,
then by merely typing
http://localhost:8080/Test index.jsp file will run
[ October 10, 2007: Message edited by: paritosh ranjan ]