扩展JSF commandLink组件

时间:2011-01-05 18:53:14

标签: jsf jsf-2

我创建了一个Facelet组件来扩展h:commandLink(添加一些功能和圆角)。

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
    <span class="btn-left btn-corners">&#160;</span>
    <span type="submit" class="submit">
        <h:commandLink id="#{id}" value="#{label}" action="#{action}" />
    </span>
    <span class="btn-right btn-corners">&#160;</span> </ui:composition>

可以使用

访问我的新组件
<my:commandLink id="continue" label="continue" action="#{applyBacking.submit}"/>

,Java代码是

public String submit(){
    ...
}

但是它给了我一个错误“ApplyBacking没有提交属性”。 我理解这个错误的原因是因为在渲染my:commandLink时,它试图将#{applyBacking.submit}评估为属性。相反,我希望将有关调用方法的信息(applyBacking.submit)传递给模板并在渲染h:commandLink时进行评估。

有什么建议吗?

1 个答案:

答案 0 :(得分:7)

创建一个composite component而不是tutorial here),它使您能够将bean操作定义为属性。

这是一个启动示例:

/resources/components/commandLink.xhtml

<ui:component
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:cc="http://java.sun.com/jsf/composite">
    <cc:interface>
        <cc:attribute name="id" required="true" />
        <cc:attribute name="label" required="true" />
        <cc:attribute name="action" method-signature="java.lang.String action()" required="true" />
    </cc:interface>
    <cc:implementation>
        <span class="btn-left btn-corners">&#160;</span>
        <span type="submit" class="submit">
            <h:commandLink id="#{cc.attrs.id}" value="#{cc.attrs.label}" action="#{cc.attrs.action}" />
        </span>
        <span class="btn-right btn-corners">&#160;</span>
    </cc:implementation>
</ui:component>

/somepage.xhtml

<!DOCTYPE html>
<html lang="en"
    xmlns="http://www.w3.org/1999/xhtml" 
    xmlns:h="http://java.sun.com/jsf/html" 
    xmlns:my="http://java.sun.com/jsf/composite/components">
    <h:head>
        <title>SO question 4608030</title>
    </h:head>
    <h:body>
        <h:form>
            <my:commandLink id="continue" label="continue" action="#{applyBacking.submit}"/>
        </h:form>
    </h:body>
</html>

顺便说一句,我个人更喜欢使用JS / jQuery作为圆角部分,例如jQuery corner plugin。只需给你的commandlink一个特定的styleClass,让JS做神奇的事。