The file web.xml
allows the configuration of how the ending of JSF pages looks like. The default setting (*.jsf
) is found in almost every JSF tutorial I found so far.
I personally prefer *.xhtml
because in all my projects I had only files with the ending .xhtml
.
What are the reasons of keeping to the *.jsf
convention and why should I do it?
Are there any disadvantages when using another url-pattern, especially if it is the same as the actual fileending?
Or is it just a matter of personal preference?