I've just started reading through Core JavaServer Faces, 3rd Ed. and they say this (emphasis mine):

It is a historical accident that there are two separate mechanisms, CDI beans and JSF managed beans, for beans that can be used in JSF pages. We suggest that you use CDI beans unless your application must work on a plain servlet runner such as Tomcat.

Why? They don't provide any justification. I've been using @ManagedBean for all the beans in a prototype application running on GlassFish 3, and I haven't really noticed any issues with this. I don't especially mind migrating from @ManagedBean to @Named, but I want to know why I should bother.

link|improve this question

@Bozho: that question is pretty similar, but after reading over Pascal's answer a few times, I still don't understand why CDI is far superior. I don't know CDI and I'm happy to learn it since it is "better." Why is it better? – Matt Ball Dec 3 '10 at 16:16
feedback

5 Answers

up vote 4 down vote accepted

CDI is preferred over plain JSF because CDI allows for JavaEE-wide dependency injection. You can also inject POJOs and let them be managed. With JSF you can only inject a subset of what you can with CDI.

link|improve this answer
So basically, I can inject an instance of almost any class (provided it has "the right stuff" - what is it, just a no-arg constructor?) with CDI, while I have to use @ManagedBean if I want to inject it with plain JSF? – Matt Ball Dec 3 '10 at 16:41
more or less - yes. – Bozho Dec 3 '10 at 16:48
Ok. Thanks! Time to migrate. – Matt Ball Dec 3 '10 at 16:52
feedback

The core difference is, @ManagedBean is controlled by JSF. @Named is controlled by applicationserver.

Apart from the difference in server support (server must be CDI capable), the major functional difference is the possibility to inject the one or other. In JSF, you'd usually use @ManagedProperty for this and in CDI @Inject. However, @ManagedProperty is only available to classes which are itself also @ManagedBean. It's not available to other classes (validators, converters, session facades, etc).

While not directly a disadvantage -there are other ways- the scope of @ManagedBean is simply limited. From the other perspective, if you don't want to expose "too much" for @Inject, you can also just keep your managed beans @ManagedBean. It's like protected versus public.

link|improve this answer
2  
I've created beans.xml, converted @ManagedBean backing beans to @Named, and converted @ManagedProperty to @Inject. All is well with the world. However, if I change my @EJB annotations to @Inject, deployment fails (org.jboss.weld.exceptions.DeploymentException) with message WELD-001408 Injection point has unsatisfied dependencies. Should I actually be using @Inject to inject no-interface EJBs into an @Named bean, or should I stick with @EJB? The EJBs are packaged in an EJB JAR, in the same EAR as the WAR that contains my CDI beans. – Matt Ball Dec 3 '10 at 21:22
feedback

With Java EE 6 and CDI you have different option for Managed Beans

  • @javax.faces.bean.ManagedBean is refer to JSR 314 and was introduced with JSF 2.0. The main goal was to avoid the configuration in the faces-config.xml file to use the bean inside an JSF Page.
  • @javax.annotation.ManagedBean(“myBean”) is defined by JSR 316. It generalizes the JSF managed beans for use elsewhere in Java EE
  • @javax.inject.Named(“myBean”) are almost the same, as that one above, except you need a beans.xml file in the web/WEB-INF Folder to activate CDI.
link|improve this answer
What is the difference between the first two? – Matt Ball Dec 9 '10 at 14:33
The goal of the first annotation is/was to replace the bean configuration in the faces-config.xml for the usage in JSF. The second one copy the concept into the "java ee 6 container". It has more functions (like @PostConstruct and @PreDestroy annotations), but is also reachable by the JSF Page (with Expression Language). – h2mch Dec 14 '10 at 11:54
feedback

I was using CDI in GlassFish 3.0.1, but to get it to work I had to import the Seam 3 framework (Weld). That worked pretty well.

In GlassFish 3.1 CDI stopped working, and the Seam Weld stopped working with it. I opened a bug on this but haven't seen it fixed yet. I had to convert all my code to using the javax.faces.* annotations but I plan to move back to CDI once they get it working.

I agree you should use CDI, but one issue that I haven't seen resolved yet is what to do with the @ViewScoped annotation. I have a lot of code that depends on it. It is not clear whether @ViewScoped works if you are not using @ManagedBean with it. If anyone can clarify this I would appreciate it.

link|improve this answer
feedback

One good reason to move to CDI: you could have a common session-scoped resource (user profile for example) @Inject'ed into both JSF managed beans and REST services (i.e., Jersey/JAX-RS).

On the other hand, @ViewScoped is a compelling reason to stick with JSF @ManagedBean - especially for anything with significant AJAX. There is no standard replacement for this in CDI.

Seam may have some support for a @ViewScoped-like annotation for CDI beans, but I haven't played with it personally.

http://seamframework.org/Seam3/FacesModule

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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