jsf 2传递“value”元素的方法表达式

时间:2013-07-24 12:47:09

标签: jsf expression el

我遇到了jsf 2.0和方法表达式的问题:

<ui:repeat var="attachment" value="#{bean.attachments}">
    <h:outputText value="#{bean.aFunction(attachment)}" />
</ui:repeat>

但是在键入“Method must have signature”字符串方法(),字符串方法(字符串),字符串方法(字符串,字符串),字符串时它已经告诉我  method(String,String,String),...“

这是我的功能:

public String aFunction(Attachment a){
    return Functions.getFormattedAttachmentString(a);
}

这里有什么问题?

0 个答案:

没有答案