2 Replies Latest reply on Sep 29, 2005 6:17 PM by phicorp

    Seam Configuration

    phicorp

      I'm having some trouble understanding Seam configuration and would appreciate some help.
      (1) The JBoss EJB 3.0 TrailBlazer talks about a persistence archive (a .par file) containing entity beans and a persistence.xml file in its META-INF directory. On the other hand, the Seam booking example seems to have its entity beans and persistence.xml file in the jboss-seam-booking.ejb3 file. How do I reconcile these things?
      (2) Where can I find documentation which will help me understand the purpose of, and create, a jboss-app.xml file and a jboss-beans.xml file which I see in the booking example?
      Many thanks,
      Bruce.

        • 1. Re: Seam Configuration
          gavin.king

          1) Yes, we started developing Seam before the .par archive stuff had been finalized. We should change the examples to use the stuff from the EJB3 public draft.

          2) jboss-app.xml enables scoped classloading in JBoss, this is standard JBoss stuff. jboss-beans.xml is configuration for the jboss microcontainer, it is not needed when running in a java ee 5 environment.

          • 2. Re: Seam Configuration
            phicorp

            Gavin,
            Thanks for the reply.
            Bruce.