Problem itself is simple. JSF h:commandButton or h:commadLink is pressed and error below happens.
javax.el.ELException: /index.xhtml @12,78 action="#{signupBean}": Identity 'signupBean' does not reference a MethodExpression instance, returned type: com.project.beans.SignupBean
If you see something similar then you have typo in your code. In your commandButton/commandLink is missing bean method specification.
<h:commandButton value="Login with gmail" action="#{signupBean}"></h:commandButton>
must be replaced with
<h:commandButton value="Login with gmail" action="#{signupBean.signup}"></h:commandButton>
Full stack trace to follow Read the rest of this entry »





