2 Replies Latest reply on Apr 7, 2006 4:39 PM by treespace

    @EJB and @Service Race Condition

      The injection fails because A is loaded before B and there's no B to stuff in variable "bee".

      @Service ... A
      {
       @EJB B bee;
       ....
      


      I can use @Depend to load Service beans in order but what about mingled EJBs and Service beans where they call each other? I need bean-level dependency on specific EJBs.