[jboss-cvs] JBossAS SVN: r81274 - trunk/server/src/etc/conf/default.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 19 03:52:00 EST 2008


Author: dimitris at jboss.org
Date: 2008-11-19 03:52:00 -0500 (Wed, 19 Nov 2008)
New Revision: 81274

Added:
   trunk/server/src/etc/conf/default/vfs.xml
Removed:
   trunk/server/src/etc/conf/default/initialize.xml
Modified:
   trunk/server/src/etc/conf/default/bootstrap-norepo.xml
   trunk/server/src/etc/conf/default/bootstrap.xml
Log:
initialize.xml is all about vfs initialization

Modified: trunk/server/src/etc/conf/default/bootstrap-norepo.xml
===================================================================
--- trunk/server/src/etc/conf/default/bootstrap-norepo.xml	2008-11-19 06:55:01 UTC (rev 81273)
+++ trunk/server/src/etc/conf/default/bootstrap-norepo.xml	2008-11-19 08:52:00 UTC (rev 81274)
@@ -6,7 +6,7 @@
 -->
 <bootstrap xmlns="urn:jboss:bootstrap:1.0">
 
-   <url>initialize.xml</url>
+   <url>vfs.xml</url>
    <url>classloader.xml</url>
    <url>aop.xml</url>
    <url>jmx.xml</url>

Modified: trunk/server/src/etc/conf/default/bootstrap.xml
===================================================================
--- trunk/server/src/etc/conf/default/bootstrap.xml	2008-11-19 06:55:01 UTC (rev 81273)
+++ trunk/server/src/etc/conf/default/bootstrap.xml	2008-11-19 08:52:00 UTC (rev 81274)
@@ -1,12 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!--
    The list of URLs for mc beans to load during bootstrap.
    $Id$
 -->
 <bootstrap xmlns="urn:jboss:bootstrap:1.0">
 
-   <url>initialize.xml</url>
+   <url>vfs.xml</url>
    <url>classloader.xml</url>
    <url>aop.xml</url>
    <url>jmx.xml</url>

Deleted: trunk/server/src/etc/conf/default/initialize.xml
===================================================================
--- trunk/server/src/etc/conf/default/initialize.xml	2008-11-19 06:55:01 UTC (rev 81273)
+++ trunk/server/src/etc/conf/default/initialize.xml	2008-11-19 08:52:00 UTC (rev 81274)
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-   The JBossAS initializer configuration.
--->
-<deployment xmlns="urn:jboss:bean-deployer:2.0">
-
-  <bean name="VFSCache">
-    <constructor factoryClass="org.jboss.virtual.spi.cache.VFSCacheFactory" factoryMethod="getInstance">
-     <!-- Use the TimedVFSCache implementation -->
-     <parameter>org.jboss.virtual.plugins.cache.TimedVFSCache</parameter>
-    </constructor>
-    <start ignored="true"/>
-  </bean>
-
-  <bean name="JBossVFSInitializer" class="org.jboss.virtual.plugins.cache.PreInitializeVFSContexts">
-    <property name="initializedVFSContexts">
-      <list elementClass="java.net.URL">
-        <value>${jboss.lib.url}</value>
-        <value>${jboss.common.lib.url}</value>
-        <value>${jboss.server.lib.url}</value>                
-      </list>
-    </property>
-    <property name="holdReference">true</property>
-  </bean>
-
-</deployment>

Copied: trunk/server/src/etc/conf/default/vfs.xml (from rev 81273, trunk/server/src/etc/conf/default/initialize.xml)
===================================================================
--- trunk/server/src/etc/conf/default/vfs.xml	                        (rev 0)
+++ trunk/server/src/etc/conf/default/vfs.xml	2008-11-19 08:52:00 UTC (rev 81274)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+   The JBossAS initializer configuration.
+-->
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+
+  <bean name="VFSCache">
+    <constructor factoryClass="org.jboss.virtual.spi.cache.VFSCacheFactory" factoryMethod="getInstance">
+     <!-- Use the TimedVFSCache implementation -->
+     <parameter>org.jboss.virtual.plugins.cache.TimedVFSCache</parameter>
+    </constructor>
+    <start ignored="true"/>
+  </bean>
+
+  <bean name="JBossVFSInitializer" class="org.jboss.virtual.plugins.cache.PreInitializeVFSContexts">
+    <property name="initializedVFSContexts">
+      <list elementClass="java.net.URL">
+        <value>${jboss.lib.url}</value>
+        <value>${jboss.common.lib.url}</value>
+        <value>${jboss.server.lib.url}</value>                
+      </list>
+    </property>
+    <property name="holdReference">true</property>
+  </bean>
+
+</deployment>




More information about the jboss-cvs-commits mailing list