I have a stateless bean something like:
@Stateless public class MyStatelessBean implements MyStatelessLocal, MyStatelessRemote { @PersistenceContext(unit
In case someone comes across this one day:
to avoid circular dependencies (allowing self reference for example) in JBoss use the annotation 'IgnoreDependency' for example:
@IgnoreDependency @EJB MySelf myselfRef;