User: tobyallsopp
  Date: 01/04/15 23:03:50

  Modified:    src/etc/conf/default jboss.jcml
  Log:
  Further to the recent AutoDeployer mods, this adds support to AutoDeployer
  for using multiple deployers so that a single AutoDeployer service can watch
  for all supported application components.
  
  What this means is that now you can deploy RARs by dropping them in deploy and
  you can deploy other types of component at server startup by putting them in
  deploy/lib (they get copied there from src/etc/edploy).
  
  Revision  Changes    Path
  1.25      +11 -10    jboss/src/etc/conf/default/jboss.jcml
  
  Index: jboss.jcml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/jboss.jcml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- jboss.jcml        2001/04/15 05:41:21     1.24
  +++ jboss.jcml        2001/04/16 06:03:50     1.25
  @@ -158,11 +158,6 @@
       <attribute name="WarDeployerName">:service=EmbeddedTomcat</attribute>
     </mbean>
   
  -  <mbean code="org.jboss.ejb.AutoDeployer" name="EJB:service=AutoDeployer">
  -    <attribute name="Deployer">J2EE:service=J2eeDeployer</attribute>
  -    <attribute name="URLs">../deploy</attribute>
  -  </mbean>
  -
     <!-- ==================================================================== -->
     <!-- JBossCX setup, for J2EE connector architecture support               -->
     <!-- ==================================================================== -->
  @@ -203,11 +198,6 @@
       <attribute name="Properties"></attribute>
     </mbean>
   
  -  <mbean code="org.jboss.ejb.AutoDeployer" name="JCA:service=AutoDeployer">
  -    <attribute name="Deployer">JCA:service=RARDeployer</attribute>
  -    <attribute name="URLs">../deploy/lib</attribute>
  -  </mbean>
  -
     <!-- Connection factory for the Minerva JDBC resource adapter. This
          points at the same database as DefaultDS. -->
     <mbean code="org.jboss.resource.ConnectionFactoryLoader"
  @@ -299,6 +289,17 @@
       </attribute>
     </mbean>
     -->
  +
  +  <!-- ==================================================================== -->
  +  <!-- Auto deployment                                                      -->
  +  <!-- ==================================================================== -->
  +  <mbean code="org.jboss.ejb.AutoDeployer" name="EJB:service=AutoDeployer">
  +    <attribute name="Deployers">
  +      J2EE:service=J2eeDeployer;
  +      JCA:service=RARDeployer
  +    </attribute>
  +    <attribute name="URLs">../deploy,../deploy/lib</attribute>
  +  </mbean>
   
     <!-- ==================================================================== -->
     <!-- JMX adaptors                                                         -->
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to