I have a question about the @Inject annotation in java ee 6 :

What is the difference between :

@Inject
private TestBean test;

@Inject
private Instance<TestBean> test2;

To have the reference :

test2.get();

Some infos about Instance : http://docs.oracle.com/javaee/6/api/javax/enterprise/inject/Instance.html

Maybe it's doesnt create the object until it's called by get() ? I just wanted to know which one is better for the jvm memory. I think direct @Inject will directly create an instance of the object , even if it's not used by the appplication...

Thank you !

link|improve this question
1  
Was my answer sufficient or did I possibly misunderstand your question? If by chance you did find it useful, don't forget to vote it up and/or mark it as accepted. Thanks! – exabrial Feb 15 at 19:29
Stack Overflow works by users getting points for taking the time to answer your questions. If my answer was useful, you should mark it as accepted by checking the checkmark by my answer so I can receive the points. Thanks! – exabrial Feb 19 at 18:04
feedback

1 Answer

The second is what's called deferred injection or initialization. Your container will elect do do the work of locating, initializing, and injecting the proper object for TestBean until you call get() in most circumstances.

As far as "which one is better", you should defer to the rules of optimization. Don't optimize until you have a problem, and use a profiler.

Another words, use the first one unless you can definitively prove the second one is saving you significant amounts of memory and cpu.

Let me know if that answers your question!

link|improve this answer
Thx for the reply, in fact I wanted to use this for the Vaadin framework ( based on GWT ) and I wanted to know if putting all UI components as Inject will kill performences like : @Inject LoginScreen login screen In fact, at the start of the app, he will load all injections on the jvm which can cause less performences if user doesnt use them... – user1108290 Feb 16 at 0:16
1  
I honestly doubt you would see a performance impact from direct injection. I would go that route for sure and not risk the technical debt! I've written massive DI injected applications with over 50 beans in spring and saw little impact from DI. – exabrial Feb 16 at 2:07
So you mean that doing a lot of Inject annotation in jee 6 does not decrease the performences for the client ? – user1108290 Feb 17 at 11:56
Yes. Doing a lot of injections is unlikely to affect the user experience. Try it for yourself; in the unlikely for some reason manage to affect the user experience, just come back to stack overflow and we can help you use visualvm to profile your code. – exabrial Feb 17 at 15:32
feedback

Your Answer

 
or
required, but never shown

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