2 Replies Latest reply on Sep 21, 2002 6:37 PM by dsundstrom

    BeanLock

    oranheim

      What does a beanlock mean, and what are the sideeffects. Can't find info in the docos.

      What I do is to construct a new entity in ejbPostCreate.

      16:34:04,493 INFO [BeanLock] NON_ENTRANT invocation

      Ove

        • 1. Re: BeanLock
          oranheim

          I still can't find out why this happens. I use 3.0.2 dist.

          Can anyone help out?

          Ove

          • 2. Re: BeanLock
            dsundstrom

            This should not be an info message. It means that in invocation has been sent to the bean that is not and entrant call. Even if the bean is marked a not reentrant, some calls are non entrant by the ejb specification. For example, getPrimaryKey and isIdentical are non entrant calls. Also relationships are implemented using message passing and these message are not entrant.

            Anyway, you can safely ignore this message.