0

我必须编写一个显示登录表单的复合组件,并且可以与以下代码片段一起使用:

<login:loginForm username="#{loginBean.username}" 
                 password="#{loginBean.password}" 
                 action="#{loginBean.login}"/>

我的 loginBean 只是一个简单的可序列化@ViewScoped @ManagedBean的 getter、setter 和public String login()方法。

这是我的复合组件:

<body>
    <cc:interface>
        <cc:attribute name="username" required="true" type="java.lang.String" />
        <cc:attribute name="password" required="true" type="java.lang.String" />
        <cc:attribute name="action" targets="submit" required="true" method-signature="java.lang.String f()"/>
    </cc:interface>

    <cc:implementation>
        <h3><span xml:lang="en">Login</span> Daten </h3>
        <h:form>
            <div class="formblock">
                <fieldset>
                    <div>
                        <h:outputLabel value="Username" for="username"/>
                        <h:inputText id="username" value="#{cc.attrs.username}"/>
                    </div>

                    <div>
                        <h:outputLabel value="Passwort" for="password"/>
                        <h:inputSecret id="password" value="#{cc.attrs.password}"/>
                    </div>
                </fieldset>
            </div>
            <div class="buttons">
                <h:commandButton id="submit" value="Anmelden" accesskey="r" />
            </div>
        </h:form>
    </cc:implementation>
</body>

但是,当我在浏览器中打开 login.xhtml 页面(包含login:loginForm-snippet)时,我可以在码头日志中看到以下错误:

Apr 29, 2012 11:59:49 PM org.apache.myfaces.view.facelets.FaceletViewDeclarationLanguage retargetMethodExpressions
SEVERE: Inner component submit not found when retargetMethodExpress

但是,这是什么意思?我的代码中的错误在哪里?我已经尝试了一些其他解决方案来实现该action属性,但没有成功。

4

2 回答 2

1

行。升级到 myfaces 版本 2.1.7 后,没有 -stuff 的直接解决方案target有效:

<body>
    <cc:interface>
        <cc:attribute name="username" required="true" type="java.lang.String" />
        <cc:attribute name="password" required="true" type="java.lang.String" />
        <cc:attribute name="action" required="true" method-signature="java.lang.String f()"/>
    </cc:interface>

    <cc:implementation>
        <h3><span xml:lang="en">Login</span> Daten </h3>
        <h:form>
            <div class="formblock">
                <fieldset>
                    <div>
                        <h:outputLabel value="Username" for="username"/>
                        <h:inputText id="username" value="#{cc.attrs.username}"/>
                    </div>

                    <div>
                        <h:outputLabel value="Passwort" for="password"/>
                        <h:inputSecret id="password" value="#{cc.attrs.password}"/>
                    </div>
                </fieldset>
            </div>
            <div class="buttons">
                <h:commandButton action="#{cc.attrs.action}" value="Anmelden" accesskey="r" />
            </div>
        </h:form>
    </cc:implementation>
</body>
于 2012-04-29T23:17:43.840 回答
0

target="submit" 不正确,因为 h:form 是 NamingContainer,因此您需要为该组件分配和 id 并将目标更改为 "myForm:submit" 或类似的东西。

于 2012-05-01T01:45:42.753 回答