I've got a JAX-RS class:
@Path("/")
@RequestScoped
public class Customer {
@Inject
private CustomerDAO cDao;
}
Where CustomerDAO is a POJO and I've got an empty beans.xml in WEB-INF.
ciao remains null. I've tried scattering @ManagedBean, @Stateless, @Named, etc. around and nothing seems to make much difference. Any suggestions? How can you even debug this?
I suppose your
Customer
Rest Resource is not in the same jar with thebeans.xml
file. After packaging, unzip the jar file to check that.