I have seen other thread with similar issue but was not able to work out direct link with my problem . Hopefully I am not repeating a question.My issue is this:
I am usi
Shared libraries are not considered for locating component-defining annotations (like @ManagedBean), so the component is not found, which means its @EJB is not found while building the java:comp namespace. Your options are:
For #4, an example would be:
@ManagedBean
@EJBs({
@EJB(name="helloworld.HelloBean", type=SampleService.class)
// ... etc
})
public class ResourceProducerBean { }