User: user57  
  Date: 02/01/02 20:00:55

  Modified:    jetty/src/resources/jetty-plugin/META-INF jboss-service.xml
  Log:
   o migrated all components to a new JMX domain name model.  jboss.system
     is now where to core/spine components live.  moved all components that
     were in JBOSS-SYSTEM that did not move into a jboss.* domain into
     jboss (where the server is now registered).  The point was to limit the
     members of jboss.system to core bits only.
   o Created org.jboss.system.Server, which does the work of initialization
     that org.jboss.Main used to do.  Main now only parses the command line,
     sets up basic legecy properties and creates a Server instance.
   o Moved functionality of Shutdown (component not cl tool) into Server (
     which is bound as jboss.system:service=Server)
   o Moved more Runtime access from Info into Server.  Exposed memory info
     as attributes.
   o Logging a WARN everywhere that uses System.getProperty("jboss.system.home")
     as that should go away soon/eventually.
   o Initialized the invokerMap in the harmi impl to avoid NPE
   o Made getopt.jar a member of the lib/* dir instead of adding it to the
     run.jar and shutdown.jars each time.
   o Minor cosmetic changes along the way.
  
  Revision  Changes    Path
  1.9       +10 -14    
contrib/jetty/src/resources/jetty-plugin/META-INF/jboss-service.xml
  
  Index: jboss-service.xml
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jetty/src/resources/jetty-plugin/META-INF/jboss-service.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- jboss-service.xml 2001/12/05 01:32:32     1.8
  +++ jboss-service.xml 2002/01/03 04:00:55     1.9
  @@ -2,9 +2,9 @@
   
   <server>
   
  -<!--
  - I think the entire set of J2EE APIs should be listed here.... - TODO
  - -->
  +  <!--
  +     | I think the entire set of J2EE APIs should be listed here.... - TODO
  +   -->
   
     <classpath archives="javax.servlet.jar, org.apache.jasper.jar, jboss-j2ee.jar"/>
   
  @@ -13,35 +13,31 @@
     <!-- ==================================================================== -->
   
     <!--
  -     |
        | Be sure to check that the configuration values are valid for your
        | environment.
  -     |
      -->
   
     <mbean code="org.jboss.jetty.JettyService"
  -      name="JBOSS-SYSTEM:service=Jetty">
  +      name="jboss.web:service=Jetty">
       <attribute name="JettyHome">dummy</attribute>
  -<!--
  +    <!--
       <attribute name="Configuration">../conf/default/jetty.xml</attribute>
       <attribute name="WebDefault">../conf/default/webdefault.xml</attribute>
  - -->
  +    -->
       <attribute name="Configuration">jetty.xml</attribute>
       <attribute name="WebDefault">webdefault.xml</attribute>
       <attribute name="UnpackWars">true</attribute>
       <attribute name="PublishMBeans">true</attribute>
     </mbean>
   
  -<!--
  - -->
     <mbean code="org.mortbay.jetty.jmx.DebugMBean"
  -      name="Jetty:Jetty=Debug2">
  +      name="jboss.web:Jetty=Debug2">
     </mbean>
   
  -<!--
  +  <!--
     <mbean code="org.mortbay.jetty.jmx.LogMBean"
  -      name="Jetty:Jetty=Log">
  +      name="jboss.web:Jetty=Log">
     </mbean>
  - -->
  +  -->
   
   </server>
  
  
  

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

Reply via email to