我对 jsf 2.0 和方法表达式有疑问:
<ui:repeat var="attachment" value="#{bean.attachments}">
<h:outputText value="#{bean.aFunction(attachment)}" />
</ui:repeat>
但是在键入“方法必须具有签名”时它已经告诉我“字符串方法(),字符串方法(字符串),字符串方法(字符串,字符串),字符串方法(字符串,字符串,字符串),...”
这是我的功能:
public String aFunction(Attachment a){
return Functions.getFormattedAttachmentString(a);
}
这里有什么问题?