`

Second-level cache is not enabled for usage [hibernate.cache.use_second_level_ca

阅读更多
昨天下载了一个hibernate4以上的版本,合计使用EhCache二级缓存,但是就是报上面的异常,找了好多资料还是不知道找到答案,最后将hibernate的缓存3以上的版本,二级缓存生效了,可以使用了,看来hibernate4和3改变了好多东西啊。
在hibernate3下面使用二级缓存的实例
设置使用二级缓存
方式1在hibernate.cfg文件中添加
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
<property name="hibernate.cache.use_second_level_cache">true</property>
<property name="hibernate.cache.use_query_cache">true</property>
说使用Configuration配置
cfg.setProperty("hibernate.cache.provider_class","org.hibernate.cache.EhCacheProvider");
cfg.setProperty("hibernate.cache.use_second_level_cache","true");
cfg.setProperty("hibernate.cache.use_query_cache","true");
然后在映射文件中使用二级缓存
如单个实体的二级缓存
<class name="Product" table="product" >
<cache usage="read-write"/>
<id name="id" type="java.lang.Integer">
<column name="id"/>
<generator class="increment"/>
</id>
<property name="name" type="java.lang.String"/>
<property name="pDesc" type="java.lang.String"/>
<property name="orderId" type="java.lang.Integer"/>
</class>

最后测试
Configuration cfg = new Configuration();
cfg.configure();
//cfg.setProperty("hibernate.cache.provider_class","org.hibernate.cache.EhCacheProvider");
//cfg.setProperty("hibernate.cache.use_second_level_cache","true");
//cfg.setProperty("hibernate.cache.use_query_cache","true");

SessionFactory sessionFactory =  cfg.buildSessionFactory();
Session session = sessionFactory.getCurrentSession();
Transaction transaction = session.beginTransaction();
Product product = (Product)session.get(Product.class,1);
transaction.commit();
System.out.println(product.getName());

Session session2 = sessionFactory.getCurrentSession();
Transaction trasaction2 = session2.beginTransaction();
Product product2 = (Product)session2.get(Product.class,1);
trasaction2.commit();
System.out.println(product2.getName());

打印结果为:
Hibernate: select product0_.id as id0_0_, product0_.name as name0_0_, product0_.pDesc as pDesc0_0_, product0_.orderId as orderId0_0_ from product product0_ where product0_.id=?
oly
oly
可见只查询了一次数据库。

有时间得研究一下hibernate4配置缓存的情况了,呵呵
分享到:
评论

相关推荐

    hibernate4.0使用二级缓存jar包

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;!-- 查询的二级缓存配置 --&gt; &lt;property name="hibernate.cache.use_query_cache"&gt;true &lt;property name="cache.provider_class"&gt;org....

    hibernate_cache_level_1

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;property name="hibernate.cache.use_query_cache"&gt;true ``` 接下来,我们需要在实体类上添加`@Cacheable`注解,或者在映射文件中设置 `&lt;cache ...

    hibernate_cache_level_2.rar_java_staredb4u

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;property name="hibernate.cache.region.factory_class"&gt;org.hibernate.cache.ehcache.EhCacheRegionFactory ``` 接下来,我们需要为特定的实体类...

    hibernate.properties

    ## to use the second-level cache with JTA, Hibernate must be able to obtain the JTA TransactionManager #hibernate.transaction.manager_lookup_class org.hibernate.transaction....

    hibernate_reference1.rar_配置文件

    - `&lt;property name="hibernate.cache.use_second_level_cache"&gt;`: 是否启用二级缓存。 3. **持久化类映射**: - `&lt;mapping resource="entity/Employee.hbm.xml"&gt;`: 指定实体类的映射文件,如`Employee.hbm.xml`。...

    第29讲--为Spring集成的Hibernate配置二级缓存

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;property name="hibernate.cache.region.factory_class"&gt;org.hibernate.cache.ehcache.EhCacheRegionFactory ``` 接下来,我们要为想要缓存的实体...

    Hibernate 2nd-level cache: JBoss Caching 配置与注意事项

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;property name="hibernate.cache.region.factory_class"&gt;org.hibernate.cache.jbc2.JBossCacheRegionFactory ``` 3. 配置JBoss Caching:创建一个...

    配置Spring+hibernate使用ehcache作为second-levelcache.docx

    " Spring+Hibernate 使用 Ehcache 作为 Second-Level Cache" Spring 和 Hibernate 是 Java Web 应用程序开发中两个非常重要的技术栈。Spring 是一个轻量级的控制反转(IoC)容器,提供了一个框架来管理 Java 对象...

    Hibernate_session_factory_配置.docx

    - `hibernate.cache.use_second_level_cache`:开启二级缓存,提高数据访问效率。 - `hibernate.cache.provider_class`:指定二级缓存提供商,这里是EhCache,一个广泛使用的Java缓存库。 - `hibernate.cache.use...

    hin2n_v0.6.0-rc2_allarch_20190704_by_hyz.apk

    Unfortunately, compiling is also a technical job, and many people can't, so I've collated the compiled results for them. image ############ NOTE for n2n_v2 (https://github.com/ntop/n2n): 2019-11-...

    Hibernate 4.4.1最终发布版本

    3. **Second-Level Cache**:此版本优化了二级缓存的使用,提升了数据访问的效率。开发者可以通过注解或者配置文件启用缓存,并选择合适的缓存提供者,如Ehcache或Infinispan。 4. **JPA 2.1兼容性**:Hibernate ...

    Hibernate4 环境搭建

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;property name="hibernate.cache.use_query_cache"&gt;true &lt;!-- Hibernate4 Ehcache 配置 --&gt; &lt;property name="hibernate.cache.region.factory_...

    Hibernate核心配置文件对照表

    - `hibernate.cache.use_second_level_cache`: 是否开启二级缓存,默认为`false`。 3. **事务管理** - `hibernate.transaction.factory_class`: 事务工厂类,如`org.hibernate.transaction....

    X-CUBE-MCSDK-FUL_5.4.4完整版.zip

    ◾Fixed an issue with the faulty setting of the maximum application current for the second drive in dual drive configurations ◾Fixed an issue with Position Control configurations using an absolute ...

    day37 05-HIbernate二级缓存:一级缓存更新同步到二级缓存及二级缓存配置文件

    `hibernate.cache.use_query_cache`和`hibernate.cache.use_second_level_cache`分别开启了查询缓存和二级缓存。最后,通过`class-cache`元素配置了`EntityClass`的缓存策略,这里使用了"read-write",表示读写操作...

    springboot+jpa(hibernate配置redis为二级缓存) springboot2.1.4

    spring.jpa.hibernate.cache.use_second_level_cache=true spring.jpa.hibernate.cache.region.factory_class=org.hibernate.cache.redis.hibernate5.SingletonRedisRegionFactory ``` 4. **实体类注解**: ...

    hibernate-release-5.0.7.Final.zip官方

    &lt;property name="hibernate.cache.use_second_level_cache"&gt;true &lt;property name="hibernate.cache.use_query_cache"&gt;true &lt;property name="hibernate.ejb.entitymanager_factory_name"&gt;hibernateSessionFactory ```...

    hv_second_secfpn

    mmdetection3d示例程序中预训练模型,用于测试和验证mmdetection3d是否安装成功,预训练模型为SECOND网络模型,数据集为KITTI数据集,模型名称为:hv_second_secfpn_6x8_80e_kitti-3d-car_20200620_230238-393f000c....

    hibernate_reference.pdf

    - **Second-Level and Query Cache**: Describes how to enable and configure Hibernate's second-level cache and query cache for improved performance. - **Query Language Substitution**: Explains how to ...

Global site tag (gtag.js) - Google Analytics