1 Reply Latest reply on Mar 22, 2004 1:10 PM by michael.daleiden

    Simple deployment question

    mvanhorn

      I think I must have a mental block because I can't seem to figure out how to do this.
      I have a web application that depends on a Hibernate service archive. How do I make sure the sar deploys before the war? There doesn't seem to be a element in jboss-web.xml, so where does it go?

      The stucture is this:
      myapp.ear
      +--myapp.war
      +--myapp-hibernate.sar
      +--myapp-ds.xml
      +--myapp.jar
      +--some common .jars

      JBoss deploys the jars in the ear just fine, then the datasource, then it tries to deploy the war file and it get a big fat error since the hibernate service is not deployed, and the war has a Servlet Filter that depends on it.

      What can I do?

      Thanks,
      Matt Van Horn

        • 1. Re: Simple deployment question
          michael.daleiden

          You need to add a depends tag to your jboss-web.xml that specifies the JMX objectname of the your Hibernate JMX component:

          <depends>jmx-objectname from myapp-hibernate.sar</depends>


          The placement of this tag is not important (as long as it is a direct child element of the jboss-web root element). I usually have this tag right at the top of the XML, so that it is easy to spot when viewing the XML in an editor.