标签: jsf primefaces
为什么在bean中声明的方法无法在xhtml(jsf)中调用?
bean方法
public void selection() { if(dto.Empno != 0) { showList = dao.getShow(); } }
XHTML
<p:ajax event="blur" update="dep" listener="#{showCaseNoticeBean.selection}"/>