I just started learning EJB's today.So , i was trying this simple program and it is giving me a NullPointerException when i run it.It says the bookBean is a null object. i really dont understand what the error means.I know this might be an easy one , but this is my first program and i really dont know how to start debugging it...Any suggestions are very welcome..:)
My code is as follows:
book entity: I am sure this one is correct.
@Entity @NamedQuery(name="findAll",query="SELECT b FROM Book b") public class Book implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String title;
@Column(length = 200)
private String description;
private String author;
private String isbn;
// getters,setters,constructors,equals,hashcode...
bookEJBBean :
@Stateless
public class bookEJBBean implements bookEJBRemote {
@PersistenceContext(unitName = "ejbUnit")
EntityManager em;
public List<Book> findBooks() {
Query query = em.createNamedQuery("findAll");
List<Book> books = (List<Book>) query.getResultList();
return books;
}
public Book findBookById(Long Id) {
return em.find(Book.class, Id);
}
public Book createBook(Book book) {
em.persist(book);
System.out.println("Book Created");
return book;
}
public Book updateBook(Book book) {
System.out.println("Entity updated");
return em.merge(book);
}
public void deleteBook(Book book) {
em.remove(em.merge(book));
System.out.println("Entity removed");
}
}
bookEJBRemote:
@Remote
public interface bookEJBRemote {
List<Book> findBooks();
Book findBookById(Long Id);
Book createBook(Book book);
Book updateBook(Book book);
void deleteBook(Book book);
}
Main.java :
public class Main {
@EJB
private static bookEJBRemote bookBean;
public static void main(String[] args) {
Book book = new Book("EJB", "A Sample EJB", "Ravi", "123");
/* Performing a few operations on the entity */
bookBean.createBook(book);
book.setTitle("Entity Modified");
bookBean.updateBook(book);
bookBean.deleteBook(book);
}
}
And this is my persistence file...
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="ejbUnit" transaction-type="JTA">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<jta-data-source>jdbc/sample</jta-data-source>
<class>com.java.ejb.Book</class>
<properties>
<property name="eclipselink.ddl-generation" value="create-tables"/>
<property name="eclipselink.logging-level" value="FINEST"/>
</properties>
</persistence-unit>
</persistence>
P.S : I posted the whole thing so that it would be easy for you to see and for me also to understand where the error is exactly. I am using GlassFish 2 , java ee5 with netbeans 6.5...
I know we have gf3,jee6 ,nb7 ... but right now i have to download it... so jus putting up with this...:)
Thank You