不集群<?xml version="1.0" encoding="UTF-8"?>  
<server>  
    <mbean code="org.jboss.cache.jmx.CacheJmxWrapper"  
        name="jboss.cache:service=Cache">  
  
        <!-- Configure the TransactionManager -->  
        <attribute name="TransactionManagerLookupClass">  
            org.jboss.cache.transaction.GenericTransactionManagerLookup   
        </attribute>  
  
        <!-- Node locking level : SERIALIZABLE              
            REPEATABLE_READ (default)              
            READ_COMMITTED             
            READ_UNCOMMITTED               
            NONE             -->  
        <attribute name="IsolationLevel">READ_COMMITTED</attribute>  
           
        <!-- Lock parent before doing node additions/removes -->  
        <attribute name="LockParentForChildInsertRemove">  
            true   
        </attribute>  
  
        <!-- Valid modes are LOCAL (default)            
            REPL_ASYNC             
            REPL_SYNC              
            INVALIDATION_ASYNC             
            INVALIDATION_SYNC   -->  
        <attribute name="CacheMode">LOCAL</attribute>  
  
        <!-- Max number of milliseconds to wait for a lock acquisition -->  
        <attribute name="LockAcquisitionTimeout">15000</attribute>  
  
    </mbean>  
</server>