当我单击我的按钮时,我在 glassfish 中收到此错误
WARNING: #{UserBean.buttonToTutorial}: javax.el.PropertyNotFoundException: /GUI/index.xhtml @61,77 action="#{UserBean.buttonToTutorial}": Target Unreachable, identifier 'UserBean' resolved to null
代码是:
<p:commandButton action="#{UserBean.buttonToTutorial}"/>
在 xhtml 文件中
并在 UserBean.java
public String buttonToTutorial() {
System.out.println("buttonToTutorial invoked");
return "tutorial.xhtml";
}
我想做的只是一种将用户从一个页面带到另一个页面的奇特方式,我做错了什么?
UserBean.java 位于根目录/richard.fileupload/UserBean.java