Search Results

1
vote

EJB into SEAM Component (Different projects and same JBoss)

Your ComponentX class is not an EJB, so you cannot use the @EJB annotation to inject them. You have a few options. Convert your ComponentX to EJB adding @Stateless or @Statefull and an interface @L …