I want to redirect a link to a JSF page, how can I do this?
In HTML, I can use a tag <a>for this. But in JSF, I use <h:outputLink>or <h:commandLink>, since they can be conditionally displayed. I want to redirect the link to another page in the same application or to an external URL. How can I do this using JSF? How can I use actionin <h:commandLink>for this?
source
share