I\'m currently learning the new Java EE 6 component models and am confused with the latest dependency injection mechanism. So here are my questions:
1) What is the d
@Inject is more general than EJB and is part of CDI specification. So if you want to use @Inject, you need an implementation of it in your server.
For POJOs (not EJBs) you have to use @Inject.