Hi,
I am trying to learn Hibernate, I found this tutorial :
http://www.netbeans.org/kb/61/web/hibernate-vwp.htmlI follwed all the steps, but at the end I got a table with a message : no items
in the Page1.jsp I got a Null pointer exception :
public void prerender() {
try {
if (dropDown1.getSelected() == null ) {
// NullPointer Exception in this line :
Option firstPerson = getSessionBean1().getPersonOptions()[0];
getSessionBean1().setSelectedPersonId((Integer)firstPerson.getValue());
}
} catch (Exception ex) {
log("Error Description", ex);
error(ex.getMessage());
}
}
Thanks, your help is appreciated.