我正在使用 Spring 3.1.1.RELEASE、Hibernate 4.1.5.Final 和 JUnit 4.8.1。我想测试我的二级缓存是否被正确使用,但不确定我是否做得对。以下 JUnit 代码在最后一个断言上失败……</p>
private Statistics m_stats;
@Before
public void setup()
{
m_stats = ((org.hibernate.internal.SessionImpl) m_entityManager.getDelegate()).getSessionFactory().getStatistics();
} // setup
@Test
public void testGenerateStats()
{
final String countryId = m_testProps.getProperty("test.country.id");
final Country country = m_countryDao.findById(countryId);
Assert.assertNotNull(country);
final Country country2 = m_countryDao.findById(countryId);
m_countryDao.findById(countryId);
Assert.assertTrue(m_stats.getSecondLevelCacheHitCount() > 0);
}
以下是我配置域对象的方式……</p>
@Entity
@Table(name = "cb_country")
@Cache(usage = CacheConcurrencyStrategy.READ_ONLY)
public class Country implements Serializable
{
…
}
这是我的 DAO……</p>
@Override
public Country findById(String id)
{
Country ret = null;
if (id != null)
{
ret = entityManager.find(Country.class, id);
} // if
return ret;
}
以下是我配置 Hibernate 二级缓存的方式……</p>
<!-- Caching -->
<property name="hibernate.cache.use_second_level_cache">true</property>
<property name="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</property>
<property name="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
<!-- Collect stats, this is for testing if the cache is working -->
<property name="hibernate.generate_statistics">true</property>
任何想法为什么我的二级缓存没有指示任何命中?谢谢 - 戴夫