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

We have some external libraries which we use in a J2EE application on Glassfish 3.1. Those libraries allow registering handlers for certain events. The requirement is that those handlers should make use of EJBs in the main application.

Our idea was to make those custom handlers in a way that they use JNDI to fetch references to EJBs, and then call methods on those EJBs. Is this the proper way to do this?

share|improve this question

1 Answer

Without knowing your specific use case, I can affirm that can be an effective way to get access to common resources (EJBs in your case) containing discrete business logic.

A common implementation involves a Service Locator to handle the jndi lookup and return a reference or make a direct call to business logic located in one or more Stateless Session Beans.

This pattern is often used, for instance, to query or persist objects to a database using a shared connection or entity manager, or gain access to a pooled factory which governs pooled resource allotment in a multi-threaded environment.

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.