[jboss-cvs] JBossCache/etc/META-INF ...
Brian Stansberry
brian.stansberry at jboss.com
Wed May 23 23:49:31 EDT 2007
User: bstansberry
Date: 07/05/23 23:49:31
Modified: etc/META-INF
local-passivation-service.xml cache-config.xml
local-fifo-eviction-service.xml
local-mru-eviction-service.xml
mixedPolicy-eviction-service.xml
replSync-service.xml
replSync-passivation-service.xml
pojocache-passivation-service2.xml
local-tx-service.xml unit-test-cache-service.xml
local-service.xml
local-expiration-eviction-service.xml
local-elementsize-eviction-service.xml
local-eviction-cacheloader-service.xml
local-lfu-eviction-service.xml
local-lru-eviction-service.xml
buddyreplication-service.xml
hibernate-recommended-config.xml
policyPerRegion-eviction-service.xml
optimistic-eviction.xml replAsync-service.xml
mux-service.xml pojocache-passivation-service.xml
Log:
Clean up the -service.xml files so they use the JmxWrapper classes and deploy properly in the AS
Revision Changes Path
1.14 +2 -5 JBossCache/etc/META-INF/local-passivation-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-passivation-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-passivation-service.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- local-passivation-service.xml 17 Apr 2007 21:54:57 -0000 1.13
+++ local-passivation-service.xml 24 May 2007 03:49:31 -0000 1.14
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
@@ -101,7 +98,7 @@
</attribute>
<!-- New 1.3.x cache loader config block -->
- <attribute name="CacheLoaderConfiguration">
+ <attribute name="CacheLoaderConfig">
<config>
<!-- if passivation is true, only the first cache loader is used; the rest are ignored -->
<passivation>true</passivation>
1.7 +3 -2 JBossCache/etc/META-INF/cache-config.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: cache-config.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/cache-config.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- cache-config.xml 8 Feb 2007 14:38:11 -0000 1.6
+++ cache-config.xml 24 May 2007 03:49:31 -0000 1.7
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<server>
- <classpath codebase="../lib" archives="jboss-cache.jar, jgroups.jar"/>
- <mbean code="org.jboss.cache.aop.PojoCache" name="jboss.cache:service=LabconnTreeCacheAop">
+
+ <mbean code="org.jboss.cache.pojo.jmx.PojoCacheJmxWrapper"
+ name="jboss.cache:service=LabconnTreeCacheAop">
<depends>jboss:service=Naming</depends>
<depends>jboss:service=TransactionManager</depends>
<attribute name="TransactionManagerLookupClass">org.jboss.cache.transaction.GenericTransactionManagerLookup
1.12 +1 -4 JBossCache/etc/META-INF/local-fifo-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-fifo-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-fifo-eviction-service.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- local-fifo-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.11
+++ local-fifo-eviction-service.xml 24 May 2007 03:49:31 -0000 1.12
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.12 +1 -4 JBossCache/etc/META-INF/local-mru-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-mru-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-mru-eviction-service.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- local-mru-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.11
+++ local-mru-eviction-service.xml 24 May 2007 03:49:31 -0000 1.12
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.11 +1 -4 JBossCache/etc/META-INF/mixedPolicy-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: mixedPolicy-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/mixedPolicy-eviction-service.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- mixedPolicy-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.10
+++ mixedPolicy-eviction-service.xml 24 May 2007 03:49:31 -0000 1.11
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.19 +1 -4 JBossCache/etc/META-INF/replSync-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: replSync-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/replSync-service.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- replSync-service.xml 17 Apr 2007 21:54:58 -0000 1.18
+++ replSync-service.xml 24 May 2007 03:49:31 -0000 1.19
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.10 +1 -4 JBossCache/etc/META-INF/replSync-passivation-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: replSync-passivation-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/replSync-passivation-service.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- replSync-passivation-service.xml 17 Apr 2007 21:54:58 -0000 1.9
+++ replSync-passivation-service.xml 24 May 2007 03:49:31 -0000 1.10
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.2 +1 -4 JBossCache/etc/META-INF/pojocache-passivation-service2.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: pojocache-passivation-service2.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/pojocache-passivation-service2.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- pojocache-passivation-service2.xml 16 May 2007 18:29:19 -0000 1.1
+++ pojocache-passivation-service2.xml 24 May 2007 03:49:31 -0000 1.2
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.pojo.jmx.PojoCacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.9 +1 -4 JBossCache/etc/META-INF/local-tx-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-tx-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-tx-service.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- local-tx-service.xml 17 Apr 2007 21:54:58 -0000 1.8
+++ local-tx-service.xml 24 May 2007 03:49:31 -0000 1.9
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.8 +1 -4 JBossCache/etc/META-INF/unit-test-cache-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: unit-test-cache-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/unit-test-cache-service.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- unit-test-cache-service.xml 10 Apr 2007 17:11:00 -0000 1.7
+++ unit-test-cache-service.xml 24 May 2007 03:49:31 -0000 1.8
@@ -10,14 +10,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.16 +1 -4 JBossCache/etc/META-INF/local-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-service.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- local-service.xml 17 Apr 2007 21:54:58 -0000 1.15
+++ local-service.xml 24 May 2007 03:49:31 -0000 1.16
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.5 +1 -4 JBossCache/etc/META-INF/local-expiration-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-expiration-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-expiration-eviction-service.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- local-expiration-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.4
+++ local-expiration-eviction-service.xml 24 May 2007 03:49:31 -0000 1.5
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.10 +1 -4 JBossCache/etc/META-INF/local-elementsize-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-elementsize-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-elementsize-eviction-service.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- local-elementsize-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.9
+++ local-elementsize-eviction-service.xml 24 May 2007 03:49:31 -0000 1.10
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.7 +2 -5 JBossCache/etc/META-INF/local-eviction-cacheloader-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-eviction-cacheloader-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-eviction-cacheloader-service.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- local-eviction-cacheloader-service.xml 17 Apr 2007 21:54:58 -0000 1.6
+++ local-eviction-cacheloader-service.xml 24 May 2007 03:49:31 -0000 1.7
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
@@ -100,7 +97,7 @@
</attribute>
<!-- New 1.3.x cache loader config block -->
- <attribute name="CacheLoaderConfiguration">
+ <attribute name="CacheLoaderConfig">
<config>
<!-- if passivation is true, only the first cache loader is used; the rest are ignored -->
<passivation>false</passivation>
1.13 +1 -4 JBossCache/etc/META-INF/local-lfu-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-lfu-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-lfu-eviction-service.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- local-lfu-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.12
+++ local-lfu-eviction-service.xml 24 May 2007 03:49:31 -0000 1.13
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.13 +2 -4 JBossCache/etc/META-INF/local-lru-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: local-lru-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/local-lru-eviction-service.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- local-lru-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.12
+++ local-lru-eviction-service.xml 24 May 2007 03:49:31 -0000 1.13
@@ -8,14 +8,12 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines JBoss Cache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl" name="jboss.cache:service=Cache">
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
+ name="jboss.cache:service=Cache">
<depends>jboss:service=Naming</depends>
<depends>jboss:service=TransactionManager</depends>
1.15 +1 -1 JBossCache/etc/META-INF/buddyreplication-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: buddyreplication-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/buddyreplication-service.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- buddyreplication-service.xml 17 Apr 2007 21:54:58 -0000 1.14
+++ buddyreplication-service.xml 24 May 2007 03:49:31 -0000 1.15
@@ -15,7 +15,7 @@
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=testTreeCache">
<depends>jboss:service=Naming</depends>
1.12 +10 -17 JBossCache/etc/META-INF/hibernate-recommended-config.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: hibernate-recommended-config.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/hibernate-recommended-config.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- hibernate-recommended-config.xml 24 Jan 2007 16:33:56 -0000 1.11
+++ hibernate-recommended-config.xml 24 May 2007 03:49:31 -0000 1.12
@@ -10,14 +10,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
@@ -26,7 +23,7 @@
<!--
Configure the TransactionManager
-->
- <attribute name="TransactionManagerLookupClass">org.jboss.cache.GenericTransactionManagerLookup</attribute>
+ <attribute name="TransactionManagerLookupClass">org.jboss.cache.transaction.GenericTransactionManagerLookup</attribute>
<!--
@@ -101,23 +98,19 @@
mcast_send_buf_size="150000" mcast_recv_buf_size="80000"
ucast_send_buf_size="150000" ucast_recv_buf_size="80000"
loopback="false"/>
- <PING timeout="2000" num_initial_members="3"
- up_thread="false" down_thread="false"/>
+ <PING timeout="2000" num_initial_members="3"/>
<MERGE2 min_interval="10000" max_interval="20000"/>
- <!-- <FD shun="true" up_thread="true" down_thread="true" />-->
+ <!-- <FD shun="true"/>-->
<FD_SOCK/>
- <VERIFY_SUSPECT timeout="1500"
- up_thread="false" down_thread="false"/>
+ <VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK gc_lag="50" retransmit_timeout="600,1200,2400,4800"
- max_xmit_size="8192" up_thread="false" down_thread="false"/>
- <UNICAST timeout="600,1200,2400" down_thread="false"/>
- <pbcast.STABLE desired_avg_gossip="20000"
- up_thread="false" down_thread="false"/>
- <FRAG frag_size="8192"
- down_thread="false" up_thread="false"/>
+ max_xmit_size="8192"/>
+ <UNICAST timeout="600,1200,2400"/>
+ <pbcast.STABLE desired_avg_gossip="20000"/>
+ <FRAG frag_size="8192"/>
<pbcast.GMS join_timeout="5000" join_retry_timeout="2000"
shun="true" print_local_addr="true"/>
- <pbcast.STATE_TRANSFER up_thread="true" down_thread="true"/>
+ <pbcast.STATE_TRANSFER/>
</config>
</attribute>
1.11 +1 -4 JBossCache/etc/META-INF/policyPerRegion-eviction-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: policyPerRegion-eviction-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/policyPerRegion-eviction-service.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- policyPerRegion-eviction-service.xml 17 Apr 2007 21:54:58 -0000 1.10
+++ policyPerRegion-eviction-service.xml 24 May 2007 03:49:31 -0000 1.11
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.7 +2 -5 JBossCache/etc/META-INF/optimistic-eviction.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: optimistic-eviction.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/optimistic-eviction.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- optimistic-eviction.xml 8 Feb 2007 14:38:11 -0000 1.6
+++ optimistic-eviction.xml 24 May 2007 03:49:31 -0000 1.7
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
@@ -28,7 +25,7 @@
</attribute>
<attribute name="FetchInMemoryState">false</attribute>
- <attribute name="FetchPersistentState">false</attribute>
+
<!-- Whether each interceptor should have an mbean
registered to capture and display its statistics. -->
<attribute name="UseInterceptorMbeans">true</attribute>
1.18 +1 -4 JBossCache/etc/META-INF/replAsync-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: replAsync-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/replAsync-service.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- replAsync-service.xml 17 Apr 2007 21:54:58 -0000 1.17
+++ replAsync-service.xml 24 May 2007 03:49:31 -0000 1.18
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
1.11 +3 -14 JBossCache/etc/META-INF/mux-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: mux-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/mux-service.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- mux-service.xml 22 May 2007 12:52:47 -0000 1.10
+++ mux-service.xml 24 May 2007 03:49:31 -0000 1.11
@@ -8,29 +8,18 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"
name="jboss.cache:service=testTreeCache">
<depends>jboss:service=Naming</depends>
<depends>jboss:service=TransactionManager</depends>
- <!--comment next three statements to disable JGroups multiplexer -->
- <depends>jgroups.mux:name=Multiplexer</depends>
- <!--
- The multiplexer service needs to be injected into the Configuration by calling
-
- Cache.getConfiguration().getRuntimeConfig().setMuxChannelFactory();
-
- before calling Cache.start(). This can either be done programmatically, or via a dependency injection
- framework like JBoss Microcontainer which is the underpinning of JBoss AS 5.0.
- -->
+ <depends optional-attribute-name="MultiplexerService"
+ proxy-type="attribute">jgroups.mux:name=Multiplexer</depends>
<attribute name="MultiplexerStack">tcp</attribute>
<!--
1.9 +1 -4 JBossCache/etc/META-INF/pojocache-passivation-service.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: pojocache-passivation-service.xml
===================================================================
RCS file: /cvsroot/jboss/JBossCache/etc/META-INF/pojocache-passivation-service.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- pojocache-passivation-service.xml 16 May 2007 18:29:19 -0000 1.8
+++ pojocache-passivation-service.xml 24 May 2007 03:49:31 -0000 1.9
@@ -8,14 +8,11 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
-
-
<!-- ==================================================================== -->
<!-- Defines TreeCache configuration -->
<!-- ==================================================================== -->
- <mbean code="org.jboss.cache.CacheImpl"
+ <mbean code="org.jboss.cache.pojo.jmx.PojoCacheJmxWrapper"
name="jboss.cache:service=TreeCache">
<depends>jboss:service=Naming</depends>
More information about the jboss-cvs-commits
mailing list