I am using maven, jsf 2.0, java ee 6, jpa and glassfish. I have an initial web page which asks if you want to sign in or register. If they say they want to sign in they are forwarded to a facelets/primefaces 3 which displays a login page with username and password text boxes. For the username text field, its value is
value="#{authenticator.username}"
and I get a
"Target Unreachable, identifier 'authenticator' resolved to null"
I am using a beans.xml. I have followed the naming conventions for CDI beans. I inserted a log message in the Authenticator constructor, and it appears it never gets called because I do not get the message.
Another oddity is that once in a blue moon it works and I get something like the following:
07/08/2012 00:27:56.140 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:27:56.171 INFO ...Authenticator - getting Authenticator username
07/08/2012 00:27:56.171 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:27:56.171 INFO ...Authenticator - getting Authenticator password
07/08/2012 00:27:56.171 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:27:56.171 INFO ...Authenticator - getting Authenticator username
07/08/2012 00:27:56.171 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:27:56.171 INFO ...Authenticator - getting Authenticator password
07/08/2012 00:28:05.843 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:05.843 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:05.843 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:05.843 INFO ...Authenticator - getting Authenticator username
07/08/2012 00:28:05.843 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:05.906 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:05.906 INFO ...Authenticator - getting Authenticator password
07/08/2012 00:28:26.000 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:26.000 INFO ...Authenticator - in Authenticator constructor`
07/08/2012 00:28:26.000 INFO ...Authenticator - in Authenticator constructor
07/08/2012 00:28:26.031 INFO ...Authenticator - in Authenticator constructor 07/08/2012 00:28:26.031 INFO ...Authenticator - getting Authenticator password
When it does work, I do not understand why it calls the constructor so many times.
Here is managed (cdi) bean:
package com.mlb.mybills.view.user;
import com.mlb.mybills.i18n.Messages;
import java.util.Locale;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ViewScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.inject.Named;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Named("authenticator")
@ViewScoped
public class Authenticator
{
private static final Logger log = LoggerFactory.getLogger(Authenticator.class);
private String username;
private char[] password;
public Authenticator()
{
log.info("in Authenticator constructor");
}
public String getUsername()
{
log.info("getting Authenticator username");
return username;
}
public void setUsername(String username)
{
log.info("getting Authenticator username");
this.username = username;
}
public char[] getPassword()
{
log.info("getting Authenticator password");
return password;
}
public void setPassword(char[] password)
{
log.info("setting Authenticator password");
this.password = password;
}
public void setPassword(String password)
{
log.info("setting Authenticator password");
this.password = password.toCharArray();
}
public String authenticate()
{
log.info("in Authenticator.authenticate");
String result = null;
ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
HttpServletRequest request = (HttpServletRequest) externalContext.getRequest();
try
{
request.login(username, new String(password));
//result = "/private/group.xhtml?faces-redirect=true";
result = "/group.xhtml?faces-redirect=true";
}
catch (ServletException ex)
{
log.error("Failed to authenticate user.", ex);
Locale locale = FacesContext.getCurrentInstance().getViewRoot().getLocale();
FacesMessage facesMessage = new FacesMessage(FacesMessage.SEVERITY_ERROR, Messages.getString(
"Login.InvalidIdPasswordMessage", locale), null);
FacesContext.getCurrentInstance().addMessage(null, facesMessage);
}
log.info("result=" + result);
return result;
}
public String logout()
{
ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
HttpServletRequest request = (HttpServletRequest) externalContext.getRequest();
try
{
request.logout();
}
catch (ServletException servletEx)
{
log.warn("Failed to logout the user", servletEx);
}
return "/Login.xhtml?faces-redirect=true";
}
}