How to redirect manually 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...

FacesContext ctx = FacesContext.getCurrentInstance(); ConfigurableNavigationHandler nav = (ConfigurableNavigationHandler) ctx .getApplication().getNavigationHandler(); //navigation should be defined in faces-config.xml nav.performNavigation("navigation");
Post a Comment