3 Replies Latest reply on Feb 3, 2011 6:05 AM by juergen.zimmermann

    Passivation vs. @Inject

    juergen.zimmermann

      I have a Stateful SessionBean which gets passivated as it should.

       

      Now I add a CDI bean as a field using @Inject. However, after activation the field is null. Any comment is appreciated!

       

      @Named("...")

      @SessionScoped

      @Stateful

      public class MyController implements Serializable {

      @Inject

      private AuthController auth;

       

      @PostActivate

      private void postActivate() {

          // Should I add something here?

      }

      }

       

      @Named("auth")

      @SessionScoped

      @Log

      public class AuthController implements Serializable {

      // some String based fields

      }