简体   繁体   中英

Injected EJB Reference Lost in ViewScoped JSF Bean

I've seen quite a bit of discussion on the injection of EJBs into ViewScoped JSF-managed beans. It seems acceptable practice to do so.

I'm attempting to change one of the beans in my application from RequestScoped to ViewScoped to add some additional needed functionality.

I've modified the EJB classes to ensure that everything is serializable. When my JSF bean is created, the EJBs are initially accessible. However, when a user action fires a method in the bean that tries to invoke an EJB method, a NullPointerException is thrown.

As soon as I switch the bean from ViewScoped back to RequestScoped, everything works fine.

Could this be a fault in the implementation of JSF being used? This application is using MyFaces 2.1.12 and runs on Websphere 7.0.

Thanks.

CDI as a framework on its own doesn't know anything about Views. Thus injecting in a @ViewScoped bean won't work.

This is one of the major disadvantages of using JSF and CDI together. But you are not the first one to encounter this problem.

If you are stuck with JSF 2.1 Implementations, frameworks like Apache CODI or Seam 3 will extend your CDI in a way so you can also @Inject in @ViewScoped beans.

If you are able to upgrade to JSF 2.2 (which I would recommended you to do), this CDI extension will be a native part of the JSF implementation and you are able to use both together without further ado. See this explanation .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM