I have a small yet complete JEE 6 application at hand.

The traditional annotations are being used: @Resource, @EJB, @Singleton, @PostConstruct, @PreDestroy, @PersistenceContext, @ManagedBean, @ManagedProperty, @RequestScope, @ApplicationScope,...

I would like to evaluate whether it makes sense to introduce CDI, and to standardize on a common strategy for dependency injection, bean lifecycle management, etc.

Question: Does anybody know about good articles, examples or manuals that transform traditional JEE6 annotations into CDI ones?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

Does anybody know about good articles, examples or manuals that transform traditional JEE6 annotations into CDI ones?

Not stricly about a "transformation" but very good resources IMO:

Related question

link|improve this answer
feedback

In my opinion, "switching" to CDI is no big deal. Just add a CDI implementation (like Weld) to your libraries, and start adding CDI Beans/Annotations to your app. You don't have to change your existing codebase. I would suggest reading the Weld reference.

link|improve this answer
feedback

see openwebbeans.apache.org

link|improve this answer
feedback

In the same spirit, I like the following article:

Spring to Java EE – A Migration Experience

It's not about "Old-skool JEE"-to-"CDI-based JEE", but more about Spring-to-JEE6.

Off-topic, but an interesting read anyway.

link|improve this answer
feedback

If you plan to use JBoss CDI Implementation (Weld) you might be interested in this CDI with JBoss Weld article.

link|improve this answer
feedback

Following the line suggested I recommend reading :

The Java EE 6 Tutorial - Contexts and Dependency Injection

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.