Search Results

0
votes

@EJB injection and the Enterprise Naming Context - relation between the two.

I think if you need to inject an Stateful Session Bean you gonna need some context that knows the relation between your EJB instance and some previously injected EJB dependency (to that instance). …
0
votes

Is using data transfer objects in ejb3 considered best practice

I think DTOs existence is related to JPA/Hibernate flaws. If you could always do transparently lazy initialization you will never use them. So using DTOs is a contract where my domain/work …
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 …