Hi,
There is no need for any entry in the web.xml for deployment of JSPs.. unless you are giving a different name i.e. accessing the JSP with a different URL. In the latter case, the configuration would be something like
<
servlet>
<servlet-name>MyJSP</servlet-name>
</jsp-file>/MyOriginalCodedJSP.jsp</jsp-file>
</servlet>
</servlet-mapping>
<servlet-name>MyJSP</servlet-name>
<url-pattern>/AliasJSP.do</url-pattern>
</servlet-mapping>