How to manually redirect in JSF
There are times when we need to redirect manually in JSF. For example in page load we do some event and after that redirect to some page. Th...
https://www.czetsuyatech.com/2013/07/jsf-manual-redirect.html
There are times when we need to redirect manually in JSF. For example in page load we do some event and after that redirect to some page. This is how we would do it:
FacesContext ctx = FacesContext.getCurrentInstance(); ConfigurableNavigationHandler nav = (ConfigurableNavigationHandler) ctx .getApplication().getNavigationHandler(); //navigation should be defined in faces-config.xml nav.performNavigation("navigation");
Post a Comment