BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News Q&A with Gavin King on the Impact of JSR-299 and Weld 1.0 on Java EE and JBoss

Q&A with Gavin King on the Impact of JSR-299 and Weld 1.0 on Java EE and JBoss

This item in japanese

Bookmarks

Red Hat's JBoss division has shipped Weld 1.0.0, Java EE 6's reference implementation for JSR-299: Contexts and Dependency Injection for Java EE (hereafter CDI). Weld is the implementation used in Sun's GlassFish Application Server version 3 and the upcoming JBoss AS 5.2.0. It does not need a full application server however. Weld can be run in a servlet container such as Jetty 6.1 or Tomcat 6, and also works with Java SE 5.0 and above. To demonstrate the latter, the Weld distribution comes with an example console application and an example Swing application.

Since a draft of JSR-299 was first submitted, Google and SpringSource submitted JSR-330 with the aim of standardising "a proven, non-controversial set of annotations that make injectable classes portable across frameworks", so when I caught up with CDI specification lead Gavin King I began by asking him what impact JSR-330 had on CDI.

CDI now uses the annotations defined by JSR-330 to declare injection points. This had a very minimal impact, since the model used in 330 is essentially identical to what 299 had already defined. It boiled down, more or less, to a change in annotation names.

Remember that 330 does not define a full dependency injection solution. It defines just enough to let you declare an injection point, with qualifiers, and then leaves the rest undefined.

InfoQ: How do CDI and EJB work with the Managed Bean model introduced in EE 6?

The new Managed Beans specification was the result of work we did in JSR-299 (what we were calling "simple Web Beans" in earlier drafts of the specification). Simple Web Beans supported dependency injection, EL names and interceptors, but did not have the programming restrictions or full capabilities of EJBs.

There was plenty of controversy as a result of this, with Red Hat arguing that we absolutely needed to be able to support injection of plain Java classes, and other EE stakeholders making clear that they were not comfortable with 299 defining a new kind of EE "component".

After much discussion, we arrived at a solution whereby this idea of a "simple" component would be removed to its own specification, forming the foundation of all other EE component programming models, including EJB, etc. That's a great vision, which we're all very happy with, though it is still not quite fully realized in EE 6.

The end result is: CDI can work with plain Java classes, now called "managed beans", or with EJBs. And EJBs are now considered just a special kind of managed bean, with some additional programming restrictions and some additional capabilities. It's a graduated programming model that makes EE significantly simpler to digest for new users.

InfoQ: Does EJB still need its own component model?

I think the direction for the EE platform is to gradually generalize the capabilities that are currently defined only for EJBs, and have them apply to all managed beans. For example, there's no reason why @TransactionAttribute and @RolesAllowed shouldn't be supported for all managed beans.

However, EJB will still have a place in defining endpoints for message delivery, remote and asynchronous method invocation, timers, etc. In these cases, the EJB lifecycle model makes plenty of sense.

InfoQ: Seam has provided inspiration to JSF 2 as well as CDI. What advantage does fixing the problems in JSF itself have over addressing them in Seam?

Well, as hard as we tried to make the user experience utterly transparent, we were never quite satisfied. Our users were always aware when they were using a feature of JSF, and when they were using a feature of Seam that should have been in JSF.


CDI grew out of Red Hat's experience with the open source Seam framework, and in broad terms standardises Seam's programming model as the programming model for Java EE 6. CDI serves three major purposes in Java EE 6. First it provides a declarative way to manage the scope, state and life-cycle of components bound to contexts. Second it provides a standardised, annotation-driven, type-safe dependency injection framework for the platform similar in approach to Google's Guice. Thirdly it provides a Service Provider Interface (SPI) for developing portable extensions for the Java EE platform.

CDI's Service Provider Interface has become a key part of Java EE's extensibility, a central aim of Java EE 6. The JSR-316 specification states:

...we believe it is desirable to enable more of these technologies to cleanly layer on or plug in to Java EE application servers. By adding more extensibility points and more service provider interfaces, these other technologies can plug in to platform implementations cleanly and efficiently, and be just as easy to use for developers as the facilities that are built into the platform.

An example of this in action can be found in the next release of Seam, version 3, which uses CDI as its core engine and then uses the CDI Service Provider Interface to offer a number of additional features not found in CDI such as BPM integration, Drools integration, support for PDF and email templates, Excel generation, and so on. These extensions (and potentially others built by third party vendors) can be run in any environment which supports JSR-299 including any Java EE 6 environment. According to the CDI spec:

A portable extension may integrate with the container by:
• Providing its own beans, interceptors and decorators to the container
• Injecting dependencies into its own objects using the dependency injection service
• Providing a context implementation for a custom scope
• Augmenting or overriding the annotation-based metadata with metadata from some other source

Gavin King told InfoQ:

The advent of CDI and JSF2 represents a new direction for Seam.

In Seam2, we wasted a huge amount of energy papering over the cracks in JSF, and the result was that we just didn't have time to work on integration with the full range of presentation technologies that interest us. JSF2 lets us focus our energies in other areas.

Most importantly, CDI now provides a core "engine" which is portable between all EE 6 application servers and is even available for Tomcat, Jetty and Resin. This core has no dependency to any particular presentation technology. What it has instead is a well-defined SPI for portable extension developers. This SPI serves as the foundation for an ecosystem. If you're a framework developer, you now know exactly what you need to do to integrate your framework with CDI and, by extension, with the EE environment. This is perhaps the most exciting feature of CDI.

So, Seam3 is going to be a set of CDI portable extensions, that work on any application server, and provide extensions to the programming model of CDI, and integration with other technologies that interest us.

Mark Little, CTO for JBoss, has stated that CDI and Seam are the future for all of their projects and platforms:

The team are already working closely with those projects and platforms, such as ESB and SOA-P, to ensure that new versions of Seam take into account their unique requirements. Importantly though, some of those projects had already decided that Seam was right for them even without any modifications to it, so it's likely you will see closer and quicker integration than some thought possible.

And King confirmed this, adding:

Seam has already been used successfully by quite a few projects at Red Hat. CDI puts the core functionality of Seam on a much more solid foundation, and our implementation of CDI, Weld, is a much more focused and much better tested piece of infrastructure. This means that we can start to use Weld for all kinds of things where Seam2 simply would not have been appropriate. Things that have nothing to do with building websites.

This is equally true outside of Red Hat and a number of other implementations of CDI are also springing up. Resin maker Caucho Technology have an implementation (CanDI) and the Resin container itself makes extensive use of CDI internally. Apache too are working on an implementation called OpenWebBeans, and Granite DS has an implementation allowing CDI to be used with Flex applications, writing:

Our feeling is that JCDI is a perfect fit for Flex RIAs with an event-driven architecture. JCDI applications look extremely clean and even [though] JBoss Seam provides a lot more features, they do not necessarily make sense with a RIA front-end.

Rate this Article

Adoption
Style

BT