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

I am trying to inject entity manager in some helper class, I can pass it to the helper from the session bean, but the problem is I need to use the entity manager in the static init block of the helper class (some thing like):

class MySessionBeanHelperClass
{
 // staff here...


    static
 {
  SomeClass s = new SomeClass(entityManager);
 }
}

So, I think the only way is to lookup the entity manager instead of injecting it. and also using the passed SessionContent will not work here. (is it????) (this is the first question)

The second question is: If I used the ordinary way to lookup a resource (in this case the entity manager) (something like the following:)

Context ic = new InitialContext(); 
em = (EntityManager) ic.lookup("java:comp/env/persistence/em"); 

Is this will convert all transactions used by this entity manager to Bean-managed transaction??

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

I don't think it's a good idea to do that from static initializer. You have to be sure that all necessary services (such as JNDI, JPA) are up before the lookup occurs, but you can't guarantee that when you do it from a static initializer.

It's a known problem in EJB that there is no "standard" way of performing one-time task upon app. start/stop, but you can use the trick in the following link:

How to perform a DB cleanup operation upon shutdown in an EJB container.

The example is for performing action upon app. stop, but you can override Servlet#init instead.

share|improve this answer
1  
'It's a known problem in EJB that there is no "standard" way of performing one-time task upon app' - This is not really true. @Singleton combined with @Startup does exactly this in EJB 3.1. Since the TS indicated he's using EJB 3.0 this is unfortunately not an option for him. – Arjan Tijms Jan 26 '11 at 23:12
@arjan: Oh, so they fixed it in 3.1? Good! – Enno Shioji Jan 27 '11 at 2:33
you are right, It seemed to be a bad design! – Muhammad Hewedy Jan 27 '11 at 7:09

Answer to your second question, No.

First question, its not really a good idea. BTW, what are you up to? In case you need EntityManager in your helper class, its better to make it a private instance level variable, and pass that from your session bean using helper class constructor.

share|improve this answer
Thanks :), I just wanted to make static instances from some classes (non-ejb) instead of create instance every time a request come from the client. – Muhammad Hewedy Jan 27 '11 at 7:08
@Mohammed: EntityManager is not an EJB, you are correct in understanding that. But it's still a managed object, and you don't know whether and when the container will instantiate it. When we inject it that merely means a alternative to lookup. So, my suggestion should work just fine. – Adeel Ansari Jan 27 '11 at 7:16

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.