Can someone help me with this error? It says NullPointerException at UserDao.login and LoginBean.loginproject. I m new to the filter in JSF 2. Which attribute is in use from the method session.getAttribute("attribute")?
thank you by a lot
regards
UserDao.java
public class UserDAO {
...
public static Connection getInstance(){
if(connection == null)
new UserDAO();
return connection;
}
public static boolean login(String user, String password) throws SQLException {
connection = getInstance();
String Query1 = "SELECT nama, password " + "FROM user " + "WHERE nama = ? AND password = ?";
PreparedStatement statement1 = (PreparedStatement) connection.prepareStatement(Query1);
statement1.setString(1, user);
statement1.setString(2, password);
ResultSet rs = statement1.executeQuery();
if (rs.next()) // found
{
System.out.println(rs.getString("nama"));
return true;
}
else {
return false;
}
}
}
LoginBean.java
public class LoginBean implements Serializable {
...
//getters setters
public String loginProject() throws SQLException {
boolean result = UserDAO.login(uname, password);
if (result) {
// get Http Session and store username
HttpSession session = Util.getSession();
session.setAttribute("username", uname);
return "home";
} else {
FacesContext.getCurrentInstance().addMessage(
null,
new FacesMessage(FacesMessage.SEVERITY_WARN,
"Invalid Login!",
"Please Try Again!"));
return "login";
}
}
public String logout() {
HttpSession session = Util.getSession();
session.invalidate();
return "login";
}
}
NullPointerExceptionis. You would otherwise have asked why variable X isnullwhich would have been a much clearer question. Right now we have no clue what exactly isnull, so we can also not explain why it isnull. Take a step back and learn basic Java so that you understand when aNullPointerExceptionwould occur. Then, tell us which variable exactly isnull. By the way, your DAO is leaking DB resources and is also not thread safe, which is a pretty major problem. But that's a different problem than which you asked about. – BalusC Feb 14 at 15:00connectionisnull? In other words, you haven't created theconnection? Why not? – BalusC Feb 14 at 22:31