cache.region.factory_class 没有出现在休眠配置建议中

cache.region.factory_class not showing up in hibernate configuration recommendations

我正在尝试在休眠中实现二级缓存。 在 hibernate.cfg.xml 文件中,我写下一行

<property name = "cache.region.factory_class"></property>

问题是我的 ide 没有在推荐中显示 cache.region.factory_class。这是 属性 被贬低了还是我做错了什么?我的休眠版本是 5.6.3

在Hibernate.cfg.xml中应该是hibernate.cache.region.factory_class

例如,当使用 JCache 时:

    <property name="hibernate.cache.region.factory_class">org.hibernate.cache.jcache.JCacheRegionFactory</property>