Java EE 6: Switching to CDI - Best resources

Jan picture Jan · Aug 4, 2010 · Viewed 9.2k times · Source

I have a small yet complete Java EE 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 Java EE 6 annotations into CDI ones?

Answer

Pascal Thivent picture Pascal Thivent · Aug 4, 2010

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

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

Related question