本文介绍了Hibernate中的CacheImpl的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将休眠版本从5.2.10.Final更新为5.3.2.Final,这样该CacheImpl类已删除.hibernate是否可以替代此类,以及如何在最新版本的hibernate中监视缓存统计信息?
I updated my hibernate version from 5.2.10.Final to 5.3.2.Final and so that That CacheImpl class was removed. Does hibernate have alternative of this class and how to monitor cache statistics in the last version of hibernate?
((CacheImpl) entityManager.getEntityManagerFactory()
.getCache()).getSessionFactory().getStatistics();
推荐答案
此类的名称已从CacheImpl更改为CacheImplementor
Name of this class was changed from CacheImpl to CacheImplementor
这篇关于Hibernate中的CacheImpl的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!