2 Replies Latest reply on Mar 29, 2004 5:37 AM by milasx

    Hibernate Deploy Strategy

    milasx

      Hi,
      Could please anyone let me if there is any documentation for a recommended deployment strategy of an Hibernate persistence layer? I have a stack of Stateless Session Beans talking to an Hibernate layer. Should I go for a simple ear solution?

      myEar.ear
      -------------myEjb.jar
      -------------hibernate.jar
      -------------myHibernateClasses.jar

      Many thanks

      Simone

        • 1. Re: Hibernate Deploy Strategy
          jae77

          that will work if you include all the necessary hibernate jars inside the ear.

          if you are going to have other "apps" (multiple ears, etc) that will want to use hibernate, you could place all the libraries inside the "lib" directory as well.

          there are also some other options that you could use as well depending on if you want the ability to do hot deployments, etc.

          • 2. Re: Hibernate Deploy Strategy
            milasx

            Many thanks! I managed to do that. One more question is how do you bind to declarative transactions, ie avoid the use of programmatic transaction management when running inside a session bean?