I want to redirect from a link in a JSF page, how can I do it?
In HTML I can use <a>
tag for this. But in JSF I use <h:outputLink>
or <h:commandLink>
as they can be conditionally rendered. I want redirect link to other page in same application or to an external URL. How can I do it with JSF? How can I use action
in <h:commandLink>
for this?