Ich habe ein JSP-Tag, das eine javax.el.MethodExpression als Attribut nimmt:
<%@ attribute name="action" required="true" type="javax.el.MethodExpression" rtexprvalue="true" %>
innerhalb desselben Tags, den ich habe:
<h:commandLink action="#{action}">
link text
</h:commandLink>
Ich erhalte die folgende Fehlermeldung, wenn ich versuche, den Link anzuklicken:
javax.faces.FacesException: #{action}: org.apache.jasper.el.JspMethodNotFoundException: /WEB-INF/tags/pager/pager.tag(17,1) '#{action}' Identity 'action' was null and was unable to invoke
Ist es möglich, dass der CommandLink die "Action"-Methode korrekt aufruft?