我有一个 jsp 标记,它采用 javax.el.MethodExpression 作为属性:
<%@ attribute name="action" required="true" type="javax.el.MethodExpression" rtexprvalue="true" %>
在我拥有的同一个标签内:
<h:commandLink action="#{action}">
link text
</h:commandLink>
当我尝试单击链接时出现以下错误:
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
commandLink 是否可以正确调用“操作”方法?