Servlet Mapping in web.xml
Ok, this is the classic servlet mapping for JSF
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>
so when I type jspPage.faces it displys jspPage.jsp.
But when I type jspPage.jsp, it agains displays this Jsp and I don't want this to happen. Basically I want to stop this, because I have included JSP files with extension jspf and when I type the full name of this jspf in the Browser, it doesn't recognize it as JSP and displays the source code. This is very stupid.
How can I prevent this?

