Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

<p:commandButton> doesn't navigate when actionListener=“#{bean.method}” is declared

I am trying to create a page which allows a user to logon to the system and then navigates to the homepage. I have managed to get it to do one or the other but cannot work out how to get it to do both. I have crawled through all the sites and cannot find a suitable answer. Please help. My code is as follows: XHTML:

<h:form>
    <p:growl id="growl" showDetail="true" life="3000" />
    <h:panelGrid columns="2" cellpadding="5">
        <h:outputLabel for="username" value="Username: " />
        <p:inputText value="#{login.username}" id="username" required="true"
            label="username" />
        <h:outputLabel for="password" value="Password: " />
        <h:inputSecret value="#{login.password}" id="password" required="true"
            label="password" />
        <p:commandButton ajax="false" id="loginButton" value="Login"
            update="growl" actionListener="#{login.login}" />
    </h:panelGrid>
</h:form>

Java Class:

@ViewScoped
@ManagedBean
@SessionScoped
public class Login implements Serializable
{
private static final long serialVersionUID = 1L;
private String username;
private String password;

public String login(ActionEvent actionEvent)
{
    RequestContext context = RequestContext.getCurrentInstance();
    FacesMessage msg = null;
    boolean loggedIn = false;

    if(username != null && username.equals("admin") && password != null && password.equals("admin"))
        {
            loggedIn = true;
            msg = new FacesMessage(FacesMessage.SEVERITY_INFO, "Welcome", username);
        }
    else
    {
        loggedIn = false;
        msg = new FacesMessage(FacesMessage.SEVERITY_WARN, "Login Error", "Invalid Credentials");
    }
    FacesContext.getCurrentInstance().addMessage(null, msg);
    context.addCallbackParam("loggedIn", loggedIn);

    FacesContext context2 = FacesContext.getCurrentInstance();
    context2.getExternalContext().getFlash().setKeepMessages(true);

    return "ProEJT?faces-redirect=true";
}

As Requested here is my faces-config.xml:

<faces-config xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
version="2.0">
<navigation-rule>
    <from-view-id>/login.xhtml</from-view-id>
    <navigation-case>
        <from-action>#{login.login}</from-action>
        <from-outcome>loggedin</from-outcome>
        <to-view-id>/ProEJT.xhtml</to-view-id>
    </navigation-case>
</navigation-rule>

When I attempted this I altered the return from my login method to "loggedin".

Thanks for any help in advance!!

like image 329
DaRoGa Avatar asked Oct 08 '13 14:10

DaRoGa


1 Answers

Action listeners are not supposed to do business logic and navigation. They are supposed to listen on action events. Business logic and navigation should be done in a true action method.

Replace

<p:commandButton ... actionListener="#{login.login}" />
public String login(ActionEvent actionEvent) {}

by

<p:commandButton ... action="#{login.login}" />
public String login() {}

and all should be well.

See also:

  • Differences between action and actionListener
like image 92
BalusC Avatar answered Sep 20 '22 01:09

BalusC