no

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...

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");

Related

jsf 655763023448332273

Post a Comment Default Comments

item