1

我想要做的是将公共数据表头声明为复合组件。但是这个答案让我直截了当,因为它没有被渲染:

如何为数据表列创建复合组件?

基本上它指示我尝试我自己的 taglib,这非常有效,除了我的标题中有一个重新渲染的链接。当这个链接被按下时 MethodNotFoundException 被抛出。

这是我的自定义标签库:

<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib
    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-facelettaglibrary_2_0.xsd"
    version="2.0">
    <namespace>http://stackoverflowdummy.com/dumb/components</namespace>
    <tag>
        <tag-name>tableHeader</tag-name>
        <source>tags/tableHeader.xhtml</source>
        <attribute>
            <description></description>
            <name>value</name>
        </attribute>
        <attribute>
            <description>The listener that handles sorting</description>
            <name>sortAction</name>
            <method-signature>java.lang.String action()</method-signature>
        </attribute>
        <attribute>
            <description>The property that holds the current id to sort on
            </description>
            <name>sortValue</name>
        </attribute>
        <attribute>
            <description>The component that needs to be updated after changes
            </description>
            <name>reRender</name>
        </attribute>
    </tag>
</facelet-taglib>

我尝试不使用方法签名,也尝试删除“动作”。我的 web.xml 确实包含这样的 taglib:

<context-param>
    <param-name>javax.faces.FACELETS_LIBRARIES</param-name>
    <param-value>/WEB-INF/cc.taglib.xml</param-value>
</context-param>

我也尝试过使用“facelets.LIBRARIES”,但没有任何区别。

            <h:commandLink value="#{o.label}" action="#{sortAction}" immediate="true" reRender="#{reRender}">
                <f:setPropertyActionListener target="#{sortValue}" value="#{o.column.sortId}" />
            </h:commandLink>

最终用途定义如下:

sortAction="#{myBean.sort}"

该 bean 有一个使用签名 String sort() 调用的方法;如果我只是定义它并跳过使用我自己的标签,它会非常有效。然而,除了 action 方法之外,一切都适用于标签......

4

1 回答 1

2

JavaBean 规范提供了多种调用方法的方法。其实你可以调用一个动作的正常方式#{actionBean.actionMethod},也可以是方式#{actionBean['actionMethod']}

您提供的排序操作被传输为 a MethodExpression,与 ValueExpressions 相比,它在某些 JSF 环境中给我带来了问题。

我希望您尝试 testwise 的是,将操作作为两个单独的(值)参数提供:

  • sortActionBean="#{myBean}"
  • sortActionMethod="sort"

并将模板中的那些称为#{sortActionBean['sortActionMethod']}. 关于这个主题的一篇好文章是传递动作方法 facelets 标签

希望能帮助到你...

于 2014-01-16T13:38:51.003 回答