0

我有以下代码:

 <h:commandButton type="submit" action="#{clController.getPaymentByMonth(clController.type)}"  id="stateInfo"  value="Show Monthly "  >
  <f:actionListener binding="#{clController.getTotal(clController.type)}" />
</h:commandButton>

当我添加 它时<f:actionListener binding=",它会出现以下错误:

at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:114)
    at com.sun.faces.facelets.tag.jsf.core.ActionListenerHandler$LazyActionListener.processAction(ActionListenerHandler.java:112)
    at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
    at javax.faces.component.UIComponentBase.broadcast(UIComponentBase.java:769)

这是我的 getTotal 函数:

 List<CustomerPayment> total = null;
        try {
            org.hibernate.Transaction tx = session.beginTransaction();
            Query q = session.createQuery("SELECT SUM(amount) from CustomerPayment where DATE like '%"+year+"' GROUP BY type");
            total = (List<CustomerPayment>) q.list();
        } catch (Exception e) {
            e.printStackTrace();
        }

        return totalDataTable = new ListDataModel(total);

可能是什么问题?

4

1 回答 1

2

问题出在actionListener'sbinding属性的值上——它应该指向一个实现ActionListener接口的对象——而不是像你的情况那样的方法调用。

来自 JSF 规范:

计算结果为实现 javax.faces.event.ActionListener 的对象的值绑定表达式。

于 2013-05-01T11:11:13.180 回答