0 Replies Latest reply on Nov 13, 2006 8:21 AM by dkalna

    Recurrent EJB injection

      Hello folks, probably easy, but I can't figure out how to do this:

      I have to local stateless session beans A and B. The Bean A is injected in Bean B and vice-versa, also

      class A {
      @EJB
      B beanB;
      }

      class B {
      @EJB
      A beanA;
      }

      by deployment there are dependency issues between those two...

      Is there any way to do this?

      Thanks a lot
      Dalibor