Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inject @SessionScoped CDI Bean to @Stateless EJB

I'd like to inject a sessionscoped CDI bean into a stateless EJB. At access time of the EJB the correct instance of the sessionscoped cdi bean (i.e. the one in the sessionscope of the caller) should be used. I know that I can solve this with a stateful EJB, however I'd really like to know if this is solvable with CDI also. As the EJB and the Servlet run in the same war I'd assume they share the same thread and the container should be able to figure out the correct sessionscoped bean in the EJB?

For example:

EJB:

@Stateless
@LocalBean
public class StatelessSessionBean {

    @Inject    
    Instance<SessionData> sessionData;    

    public String testMethod() {
        SessionData bean = sessionData.get();
        String result = "Retrieved bean " + bean + " with UUID "+ bean.uuid + ". Created on: " + new SimpleDateFormat("dd.MM.yyyy HH:mm").format(bean.creationDate);
        return result;
    }
}

CDI Bean:

@SessionScoped
public class SessionData implements Serializable {      

    String uuid;
    Date creationDate;

    public SessionData() {
        uuid = UUID.randomUUID().toString();
        creationDate = new Date();
    }    
}

When I now access the stateless EJB e.g. from a servlet, I'd like testMethod to use the CDI bean which is associated with the caller's HTTPSession. So if two clients from different browser/http sessions access the Servlet they should both get different result strings.

Do I need a CDI Provider instead of the Instance and if yes how do I produce the correct instance of the bean for the given session? I thought about maybe getting the BeanManager and searching for instances of the SessionData but I don't know how I'd get the correct one.

Any help is greatly appreciated, thanks !

like image 397
Korgen Avatar asked Nov 10 '13 15:11

Korgen


Video Answer


1 Answers

Ok, now I feel kind of stupid :-(

I was bypassing the contextual bean provided by the proxy by not-using getters/setters for the member access. Instead I directly used the package-private fields which prevents the proxy from providing the right instance.

As soon as I switched to getters/setters it started working as expected.

like image 68
Korgen Avatar answered Oct 24 '22 22:10

Korgen