Primefaces(V6.0.0)
I am trying to logout from Application, but when I click logout menulink, nothing happen.
Following is xhtml code
<p:submenu label="LogOut">
<p:menuitem value="LogOut" onclick="selectComponentLink(this)" action="#{loginBean.logout}" url="/login.xhtml" />
</p:submenu>
LoginBean.java
public String logout() {
return "login.html";
}
How do I call logout() method define in LoginBean.java when user click on logout menulink?