There are instances when
.jsp names need to be hidden from the URL. This can be done using various design techniques. But if your application is small and simle enough that it doesn't even require a servlet, you can hide a real URL by defining a mapping in the
web.xml file.
Here is a snippet from the
web.xml file:
<servlet>
<servlet-name>admin.jsp</servlet-name>
<jsp-file>/admin.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>admin.jsp</servlet-name>
<url-pattern>/company.myco.admin</url-pattern>
</servlet-mapping>
Now the url can point to
/company.myco.admin, which would actually take the user to
/admin.jsp.
Puneet M. Sangal