我开始研究RichFaces 4.2.2并且在简单示例中遇到问题,我有一个xml:
<ui:define name="content">
<h:form>
<rich:panel style="width: 50%">
<h:panelGrid columns="2">
<h:outputText value="Name:"/>
<h:inputText id="inp" value="#{echoBean.name}">
<a4j:ajax event="keyup" render="echo count" listener="#{echoBean.countListener}"/>
</h:inputText>
<h:outputText value="Echo:"/>
<h:outputText id="echo" value="#{echoBean.name}"/>
<h:outputText value="Count:"/>
<h:outputText id="count" value="#{echoBean.count}"/>
</h:panelGrid>
<a4j:commandButton value="Submit" actionListener="#{echoBean.countListener}" render="echo, count"/>
</rich:panel>
</h:form>
</ui:define>
和一个简单的bean:
@Component("echoBean")
@Scope(value = "session")
public class EchoBean {
private String name;
private Integer count = 0;
//getter setter methods here
public void countListener(ActionEvent event) {
count++;
}
}
当我尝试在inputText中打印时,我有例外:
Caused by: javax.el.MethodNotFoundException: /home.xhtml @35,112 listener="#{echoBean.countListener}": Method not found: com.example.training.bean.EchoBean@d523fa.countListener()
at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:102)
at org.ajax4jsf.component.behavior.MethodExpressionAjaxBehaviorListener.processAjaxBehavior(MethodExpressionAjaxBehaviorListener.java:71)
at javax.faces.event.AjaxBehaviorEvent.processListener(AjaxBehaviorEvent.java:113)
at javax.faces.component.behavior.BehaviorBase.broadcast(BehaviorBase.java:98)
at org.ajax4jsf.component.behavior.AjaxBehavior.broadcast(AjaxBehavior.java:348)
at javax.faces.component.UIComponentBase.broadcast(UIComponentBase.java:763)
at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:775)
at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1267)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
... 19 more
但为什么呢?使用按钮,这个相同的监听器工作得很好,在a4j中的“监听器”参数的文档中:ajax它说:
表达式必须求值为一个公共方法,它接受一个返回类型为void的ActionEvent参数,或一个不带参数且返回类型为void的公共方法
为什么它在没有countListener()
参数的情况下使用ActionEvent
?我不明白。
答案 0 :(得分:3)
为了能够将listener
属性与RF4一起使用,您的侦听器方法应该采用AjaxBehaviorEvent
类型的参数,而不是ActionEvent
类型。从错误消息中可以看到,另一种替代方法是定义一个不带参数的标准java方法,并且具有void返回类型,如
public void countListener();
为什么它在没有ActionEvent参数的情况下使用countListener()?我不明白。
这是API的合同,您必须遵守能够使用它。
答案 1 :(得分:1)
使用带有以下签名的bean函数 void作为返回类型 ActionEvent对象作为参数 bean函数的示例如下
public void countListener(ActionEvent event) {}