我无法在 JSF 支持 bean 中调用方法。我收到此错误。
(org.apache.jasper.el.JspMethodNotFoundException: /login.jsp(40,26) '#{login_bean.dbDelete}' 找不到方法: beans.login_bean@263b1d94.dbDelete() )
方法签名如下:
public void dbDelete(String UName) {
//
}
调用该方法的JSP代码为:
<h:commandButton action="#{login_bean.dbDelete}" value="Delete" type="submit"/>
这是如何引起的,我该如何解决?