JSF 页面输入文本未在 Bean 中设置属性



JSF登录页面没有设置bean中的属性。这是我的Login.xhtml的一部分:

<h:form>
<h:outputLabel value="#{controllerBean.foutmelding}" id="foutmelding"></h:outputLabel><br />
<table width="50px" align="center">
    <tr>
        <td align="left">
            <h:outputLabel for="gebruiker" value="Gebruikersnaam:"/>
        </td>
        <td>
            <h:inputText id="gebruiker" required="true" value="#{controllerBean.gebruiker}"></h:inputText>
        </td>
    </tr>
    <tr>
        <td align="left">
            <h:outputLabel for="wachtwoord" value="Wachtwoord:"/>
        </td>
        <td>
            <h:inputSecret id="wachtwoord" required="true" value="#{controllerBean.wachtwoord}"></h:inputSecret>
        </td>
    </tr>
    <tr>
        <td align="right" colspan="2">
            <h:commandButton value="Inloggen" styleClass="button" action="#{controllerBean.showLogin}"></h:commandButton>
        </td>
    </tr>
</table>
</h:form>

'gebruiker'和' wachtword '应该在bean中按以下代码设置:

@Named(value="controllerBean")
@SessionScoped
public class ControllerBean implements Serializable {
/** Datafields */
public String gebruiker;
public String wachtwoord;
public String getGebruiker() {
    return gebruiker;
}
public void setGebruiker(String gebruiker) {
    this.gebruiker = gebruiker;
}
public void setWachtwoord(String wachtwoord) {
    this.wachtwoord = wachtwoord;
}
public String getWachtwoord() {
    return wachtwoord;
}
public String showLogin() {
    if (gebruiker != null && gebruiker.length() > 0 && wachtwoord != null && wachtwoord.length() > 0) {
        Klant k = controller.getKlant(gebruiker);
        if (k == null) {
                foutmelding = "Gebruikersnaam is onjuist.";
                return "Login.xhtml";
            }
            if (!k.getWachtwoord().equals(wachtwoord)) {
                foutmelding = "Wachtwoord is onjuist.";
                return "Login.xhtml";
            }
            ingelogdeKlant = k;
            foutmelding = "";
            return "Home.xhtml";
        } else {
            // Geen gebruikersnaam of wachtwoord ingevuld.
            foutmelding = "Vul uw gebruikersnaam en wachtwoord in.";
        }
        return "Login.xhtml";
    }

}

当我在Netbeans中调试时,值'gebruiker'和' wachtword '为空。

让它像

import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import java.io.Serializable;
@ManagedBean
@SessionScoped
public class ControllerBean implements Serializable {

@ManagedBean默认情况下将bean的名称添加到controllerBean,并将此POJO注册为ManagedBaen

相关内容

  • 没有找到相关文章

最新更新