访问ValueExpression属性的原始表达式到taglib组件

时间:2015-07-09 08:21:59

标签: jsf el facelets jsf-2.2 taglib

我可以将作为属性值传递的ValueExpression的表达式字符串访问到我的taglib组件吗?

我的目标是以编程方式从中导出缺失的属性值。在这种情况下,我试图避免不得不重复属性作为文字。

现在:

<a:columnText title="name" value="#{entity.name}" sortBy="entity.name" />

期望:

<a:columnText title="name" value="#{entity.name}" />

-taglib.xml

<tag>
    <tag-name>columnText</tag-name>
    <source>column-text.xhtml</source>
    <attribute>
        <name>value</name>
        <required>true</required>
    </attribute>
    <attribute>
        <name>title</name>
        <required>false</required>
    </attribute>
    <attribute>
        <name>sortBy</name>
        <required>false</required>
    </attribute>
</tag>

列text.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:p="http://primefaces.org/ui" xmlns:h="http://java.sun.com/jsf/html"
                xmlns:a="http://www.kwa.nl/jsf/app-legacy" xmlns:c="http://java.sun.com/jstl/core">

    <c:if test="#{empty sortBy}">
        <a:expressionAsLiteral var="#{sortBy}" value="#{value}" />
    </c:if>

    <p:column headerText="#{title}" sortable="true" sortBy="#{sortBy}">
        <h:outputText value="#{value}"/>
        <a:sortByUnwrapper/>
    </p:column>
</ui:composition>

<a:expressionAsLiteral />旨在打开ValueExpression&#39;#{value}&#39;到&#39;#{entity.name}&#39;并设置&#39;#{sortBy}&#39;字面上的'entity.name&#39;。在此示例中,为primefaces sortBy列提供。

public class ExpressionAsLiteral extends TagHandler {

    private final TagAttribute var;
    private final TagAttribute value;

    public ExpressionAsLiteral(TagConfig config) {
        super(config);
        var = getRequiredAttribute("var");
        value = getRequiredAttribute("value");
    }    

    @Override
    public void apply(FaceletContext ctx, UIComponent parent) throws IOException {
       // abstracted for example.
       setAsLiteral(ctx, var, unwrapFaceletAttributeValue(ctx,value));
    }
}

我的调试器告诉我所需的信息隐藏在value的ValueExpressionImpl private VariableMapper varMapper中。我的问题是解开返回的ValueExpressionImpl而不诉诸代码味道。

我的google-fu让我失望了。我觉得我的方法都错了,有什么提示吗?

编辑#1: 尝试以下方法。结果为#{value}而不是所需的属性值#{iRow.title}

valueExpressionString = value.getValueExpression(ctx, Object.class).getExpressionString();

Variables in trace

1 个答案:

答案 0 :(得分:2)

关于具体问题,您可以通过http://enquiry.indianrail.gov.in/ntes/访问模板客户端中定义的代表标记属性值的ValueExpression,然后FaceletContext#getVariableMapper()传递标记属性名称。然后,您可以通过VariableMapper#resolveVariable()获取文字表达式字符串。

<my:expressionAsLiteral tagAttributeName="value" />
String tagAttributeName = getRequiredAttribute("tagAttributeName").getValue();
ValueExpression ve = context.getVariableMapper().resolveVariable(tagAttributeName);
String expression = ve.getExpressionString(); // #{entity.name}
String literal = expression.substring(2, expression.length() - 1); // entity.name

然而,在那之后,不可能通过一些“var”将它放在EL范围内,因为PF 4.x最终会将sortBy="#{sortBy}"的值字面解释为#{sortBy},而不是entity.name。你最好将它嵌套在<p:column>中,并让标记处理程序明确地设置它。

<p:column>
    <my:expressionAsLiteral tagAttributeName="value" componentAttributeName="sortBy" />
    #{value}
</p:column>
String componentAttributeName = getRequiredAttribute("componentAttributeName").getValue();
parent.getAttributes().put(componentAttributeName, literal);

至于你实际上试图解决的功能问题,以下对PF 5.2来说效果很好。根据源代码,他们将其修复为5.0,并在5.1中进一步改进。

/WEB-INF/tags/column.xhtml

<ui:composition 
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://xmlns.jcp.org/jsf/core"
    xmlns:h="http://xmlns.jcp.org/jsf/html"
    xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
    xmlns:p="http://primefaces.org/ui"
>
    <p:column sortBy="#{empty sortBy ? value : sortBy}">#{value}</p:column>
</ui:composition>

模板客户端:

<p:dataTable value="#{bean.items}" var="item">
    <my:column value="#{item.id}" />
    <my:column value="#{item.name}" sortBy="#{item.value}" />
    <my:column value="#{item.value}" />
</p:dataTable>