日期:2014-05-20  浏览次数:20656 次

Hibernate RMI 分布式二级缓存为什么对添加、删除、查询集合不会通知其他peer
我在本地部署了两个tomcat服务server1和server2,但是我在server1中查询或者修改单条数据的时候,server2中的缓存能做相应的变化,但是当在server1做查询所有集合、添加、删除操作的时候,server2的缓存没任何变化,具体配置文件如下
hibernate.cfg.xml
<hibernate-configuration>
  <session-factory>
    <!-- Database connection settings -->
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/ehcheTest?useUnicode=true&amp;characterEncoding=UTF-8&amp;mysqlEncoding=utf-8</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>

<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <!-- SQL dialect -->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>



    <!-- Enable Hibernate's automatic session context management -->
    <property name="current_session_context_class">thread</property>

    <!-- Enable the second-level cache  -->
    <property name="cache.use_second_level_cache">true</property>
<property name="cache.use_query_cache">true</property>    
    <property name="net.sf.ehcache.configurationResourceName">ehcache.xml</property>
  
    <property name="hibernate.cache.region.factory_class">
      net.sf.ehcache.hibernate.SingletonEhCacheRegionFactory
     </property>
    <!-- Echo all executed SQL to stdout -->
    <property name="show_sql">true</property>

    <!-- Drop and re-create the database schema on startup -->
    <property name="hbm2ddl.auto">update</property>
<property name="hibernate.cache.region_prefix"></property>
    <mapping resource="com/nokia/test/Student.hbm.xml"/>
  </session-factory>
</hibernate-configuration>

server1 中的ehcache.xml
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
   <diskStore path="java.io.tmpdir"/>  
   <!--调用ehcache2的RMI-->
   <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" 
   properties="peerDiscovery=manual,rmiUrls=//192.168.10.167:40002/userIdcache"/>

<!--RMI监听40001端口-->
    <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
        properties="hostName=192.168.10.167,port=40001,socketTimeoutMillis=2000"/>
        
    <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" 
    timeToLiveSeconds="120" overflowToDisk="true" diskSpoolBufferSizeMB="30" 
    maxElementsOnDisk="10000000" diskPersistent="false" diskExpiryThreadIntervalSeconds="120" 
    memoryStoreEvictionPolicy="LRU">