Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Can you add the stacktrace from the exception? – Binyamin Sharet Oct 6 '11 at 17:09
Instead of using main method, try calling your EJB from a JSP page in same server where your EJB is deployed. If that doesn't work then you have a problem in your EJB configuration. If that works than the way you are injecting EJB in your main method may not be the right way to call your EJB. – Usman Saleem Oct 6 '11 at 17:10
@MByD : nothing else... it only gives a NUllPointerException at main :line number... thats it – ravi Oct 6 '11 at 17:18

1 Answer

The Injection @EJB private static bookEJBRemote bookBean; only works inside the EJB container (aka Application Server).

During startup of the server you should see something like

INFO  [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase]
       Binding the following Entries in Global JNDI:
    bookEJBBean/remote - EJB3.x Default Remote Business Interface
    bookEJBBean/remote-foo.bar.bookEJBRemote - EJB3.x Remote Business Interface

Then you can lookup your bean from the client

Hashtable<String,String> environment = new Hashtable<String,String>();
environment.put(Context.INITIAL_CONTEXT_FACTORY,
                 "org.jnp.interfaces.NamingContextFactory");
environment.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces");
environment.put(Context.PROVIDER_URL, "jnp://"+jndiHost); //e.g. localhost:1099

InitialContext ctx = new InitialContext(environment);
bookEJBRemote myBean = (bookEJBRemote)getContext().lookup("bookEJBBean/remote");

Then you can call the methods of your bean myBean.

PS: Class names start with upper case letter by convention.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.