3

私は JSF プログラミングの初心者なので、簡単な質問があります。

次のjsfファイルがあります。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets">

<h:head>
    <title>Insert Title Here</title>
</h:head>

<body>
    <h:form>
        <h:panelGrid columns="3">

            /* Here I take the username */

            <h:outputLabel for="username">Username</h:outputLabel>
            <h:inputText id="username" value="#{register.user.username}"  
                required="true" requiredMessage="Enter username">
                <f:ajax event="blur" render="usernameMessage" />
            </h:inputText>
            <h:message id="usernameMessage" for="username" />

            /* Here I take the password */

            <h:outputLabel for="password">Password</h:outputLabel>
            <h:inputSecret id="password" value="#{register.user.password}"
                required="true" redisplay="true" requiredMessage="Enter password">
                <f:ajax event="blur" render="passwordMessage" />
            </h:inputSecret>
            <h:message id="passwordMessage" for="password" />

            /* Here I take the email */

            <h:outputLabel for="email">Email</h:outputLabel>
            <h:inputText id="email" value="#{register.user.email}"
                required="true" requiredMessage="Enter email">
                <f:ajax event="blur" render="emailMessage" />
            </h:inputText>
            <h:message id="emailMessage" for="email" />

            /* And these are my 3 command buttons, and they are working only when the username, password and email are filled in. */

            <h:panelGroup>
                <h:commandButton value="Register" action="#{register.submit}">
                    <f:ajax execute="@form" render="@form" />
                </h:commandButton>
                <h:commandButton value="setDB" action="#{register.setDB}">
                    <f:ajax execute="@form" render="@form" />
                </h:commandButton>
                <h:commandButton value="getDB" action="#{register.getDB}">
                    <f:ajax execute="@form" render="@form" />
                </h:commandButton>
                <h:commandButton value="reset" action="#{register.reset}">
                    <f:ajax execute="@form" render="@form" />
                </h:commandButton>
            </h:panelGroup>

            <h:messages globalOnly="true" layout="table" />
        </h:panelGrid>
    </h:form>

    /* And this is the button that I want to work without the need to fill in the username, password and email */

    <h:panelGroup rendered="#{register.user.ini!=true}">
        <h3>Result</h3>
        <h:commandButton value="getDB" action="#{register.getDB}" />
    </h:panelGroup>

</body>
</html>

だから私の質問は、次のコマンドボタンを機能させる方法です:

<h:panelGroup rendered="#{register.user.ini!=true}">
    <h3>Result</h3>
    <h:commandButton value="getDB" action="#{register.getDB}" />
</h:panelGroup>

アプリを起動しても表示されません。フィールドに入力する必要なしにデータベース情報を取得したいだけです:) ...他のボタンはフォームにあり、フィールドのユーザー名、パスワード、電子メールに何かが含まれている場合にのみ機能します。このコードは例外もエラーも生成しませんが、ボタン (フォームの外側にあるボタン) は機能しません。

4

1 に答える 1

3

中にないと使えないh:commandButtonh:form

何を達成しようとしているのかわかりませんが、このPreRenderViewEventを見てください

また、Bean の作成時にいくつかのロジックを実行したい場合@PostConstructは、Bean で使用できます

@PostConstruct
public void init() {
    retrieveDB();
}

また、get/set プレフィックスを Bean アクション メソッドに与えるのは本当に悪い習慣です。

于 2012-11-20T08:31:46.403 に答える