I'm having a little bit of a problem here, whenever I use an action attribute (i.e. <h:commandButton action="/test/test2.whatever" value="Test"/>) jsf changes the extension to .jsf and then redirects me there. So if I press the aforementioned button it would redirect me to /test/test2.jsf. Is this the default behavour and can I change it so only for example files with .xhtml would be changed to .jsf (to be honest this is my first JSF project and the configuration was done by my teammate who's on vacation).
|
|
||||
|
|
|
Besides, there is a
So probably yours is defined to be My recomendation is that you shouldn't decide navigation rules inside the
|
|||||||
|
|
Another thing (other than the default suffix in Pakore's answer) to consider would be the servlet mapping in web.xml:
So be careful, if the JSF servlet is mapped by the .jsf extension you wouldn't want to change that... otherwise how would it know that the page is a JSF page? |
|||
|
|
|
The
It will implicitly go to However, if the target page is NOT a JSF page, then you don't need a JSF button here. Just plain vanilla HTML suffices.
|
|||||
|