I need to modify a user session object (SessionScoped bean - CDI) in a Servlet, so I have to obtain that bean somehow. I used injection in the following way:

@Inject
private UserSession user;

where UserSession is the SessionScoped CDI bean. user methods are called from either doPost or doGet servlet methods. This works perfectly; every time the @Inject annotation injects the appropriate UserSession bean, but I don't understand how this behavior is achieved.

I assumed that the beans, annotated with @Inject, are injected only once (when the object - Servlet instance in this case - is created), but it is obviously a wrong presumption.

So, when are these beans injected into the servlet? Per request? And how does this approach avoids conflicts (one servlet instance - multiple threads to deal with it) when there are multiple UserSession objects?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

The CDI uses the proxy pattern. The injected instance is actually not the real instance, but a proxy which locates the real instance depending on the current context an delegates all methods to it.

This mechanism allows you to inject instances of a narrower scope in instances of a broader scope and allows you to still get the expected instance in the current context. The standard JSF @ManagedProperty annotation doesn't support it, simply because it does not use a proxy, but injects the desired instance directly. That's why it's not possible to inject something of a narrower scope by @ManagedProperty.

link|improve this answer
Yes, this explains the behavior I mentioned, thank you. – CyberMJ Dec 28 '11 at 16:55
You're welcome. – BalusC Dec 28 '11 at 16:57
feedback

Your answer lies in the C of CDI, which stands for Contexts.

What happens is that not the actual bean is injected, but a proxy. This proxy is contextual and resolves to the actual session scoped bean depending on the context of the caller on who's behalf the proxy is executed.

link|improve this answer
Thank you for the answer :) – CyberMJ Dec 28 '11 at 16:55
feedback

If I'm not wrong, when you annotate a CDI bean with @SessionScoped, that bean will be created on the 1st request that needs it and it will last until the end of the Session. Hence, when you need to use that bean in future requests, the same bean is injected per request.

link|improve this answer
2  
The servlet, in turn, is however created on webapp's startup and destroyed on webapp's shutdown. Your answer does not explain why the @Inject still gives the proper instance of the current session in the servlet. – BalusC Dec 28 '11 at 16:44
1  
That's not entirely correct. What you explain is what happens when a JSF managed bean is injected or a stateful session bean. In this case the OP wonders how a single instance of a Servlet is seemingly injected with an infinite amount of different beans. – Arjan Tijms Dec 28 '11 at 16:44
feedback

Your Answer

 
or
required, but never shown

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