我遇到了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);
}
这里有什么问题?