我继续阅读帖子这不能不说ActionListener的方法必须具有以下signiture:
public void calledByActionListener(ActionEvent e) {
}
调用像这样:
<p:commandButton value="Example" id="example" process="@this" ajax="false"
actionListener="#{exampleBean.calledByActionListener()}">
不过,我有这样一个无参数的方法,它的工作原理:
public void calledByActionListener() {
}
做了什么改变?