我想要做的是将公共数据表头声明为复合组件。但这个答案让我直截了当,因为它没有呈现:
How to create a composite component for a datatable column?
基本上它指示我尝试使用我自己的taglib,这样做效果很好,除了我的标题中有一个链接,它有reRender。按下此链接时抛出MethodNotFoundException。
这是我自定义的taglib:
<?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()的方法;如果我只是定义它并跳过使用我自己的标记,它的效果非常好。但是除了动作方法之外,一切都适用于标签......
答案 0 :(得分:2)
JavaBean规范提供了多种方法来调用方法。实际上,您可以通过#{actionBean.actionMethod}
正常方式调用操作,也可以#{actionBean['actionMethod']}
方式调用操作。
您提供的排序操作将转移为MethodExpression
,与ValueExpression
相比,我在某些JSF环境中遇到了问题。
我希望您尝试testwise,将操作作为两个独立的(值)参数:
sortActionBean="#{myBean}"
sortActionMethod="sort"
并将模板中的内容称为#{sortActionBean['sortActionMethod']}
。关于这个主题的一篇好文章是Passing action methods facelets tags。
希望它有所帮助...