Is it possible to use @EJB inside another EJB? I'm trying to do this now, and my EJB is ending up null. I'll outline my problem in an example.

@Stateless
@LocalBean
@Local(LoginServiceLocal.class)
public class LoginService implements LoginServiceLocal {    

    public void createLogin(String email, String password) { ... }
}

@Stateless
@LocalBean
@Local(AccountServiceLocal.class)
public class AccountService implements AccountServiceLocal {

    @PersistenceContext(unitName = "accounts")
    private EntityManager accountEntityManager;

    @EJB
    private LoginServiceLocal loginService;

    public void createAccount(Account account, String email, String password) {
        accountEntityManager.persist(account);
        loginService.createLogin(email, password);
    }
}

Is this type of thing supposed to be possible? I should also mention that I'm using an embedded container (via EJBContainer), and I'm looking up the AccountService using JNDI, however when I try and call loginService.createLogin in the AccountService, the loginService is null (not being initialized by @EJB).

Is what I'm trying to do possible?

Thanks.

link|improve this question

This code is definitely compliant. You might be experiencing some sort of unrelated deployment issue, so check that LoginService is successfully deployed. If you'd like to see a working example of an EJB referencing an EJB via @EJB, check out openejb.apache.org/3.0/injection-of-other-ejbs-example.html – David Blevins Nov 27 '10 at 19:45
feedback

2 Answers

up vote 2 down vote accepted

Yes, it's possible.

The @LocalBean annotation, enables an EJB to expose a no-interface client view, so that you won't need to define a Local interface.

On the other hand, the @Local annotation defines a bean's local client interface.

Choose one of the above configuration options not both.

If you choose to use the @LocalBean annotation, drop the @Local annotation, remove the implements keyword and inject the bean class name with the @EJB annotation.

If you choose to use the @Local annotation, drop both @Local and @LocalBean annotations and inject the bean with the @EJB annotation using the interface name.

link|improve this answer
Just to note that using both should be fine. If it does affect anything, then it's definitely a bug. – David Blevins Nov 27 '10 at 19:49
feedback

Yes, I was just working on some of my code that does just that. It might be an issue with how you're creating the EJB. I have only done it using injection and not a jndi lookup.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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