Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to configure Hibernate secondary cache

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you how to configure Hibernate secondary cache, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

Hibernate has a lot to learn. Here we mainly introduce the configuration of Hibernate secondary cache, including the Hibernate secondary cache hosted by Spring.

Use EhCache to configure the Hibernate secondary cache:

Configure Hibernatee secondary cache preparation:

1) add ehcache-1.2.3.jar to the classpath of the current application.

2) add the providing class of the EhCache cache plug-in to the hibernate.cfg.xml file.

Org.hibernate.cache.EhCacheProvider

3) send the ehcache.xml file to the classpath (under the src directory of the project), and this file is in the etc of the Hibernate installation directory.

/ / configure cache. Read-write concurrent access strategy must be adopted for Category objects in the cache immediately after the class element.

Product.hbm.xml

Edit the ehcache.xml file:

Hibernate secondary cache hosted by Spring

1. In the configuration file of spring, add the xml code org.hibernate.cache.EhCacheProvider true in the hibernate section

two。 Set the cache policy xml code for the HBM table

3. In DAO, set to use the cached Java code getHibernateTemplate (). SetCacheQueries (true) before calling the find method query

Add: if you do not set the query cache, Hibernate will only cache a single persistent object obtained using the load () method. If you want to cache the data result set obtained using the findall (), list (), Iterator (), createCriteria (), createQuery () methods, you need to set hibernate.cache.use_query_cache true.

The above is all the contents of the article "how to configure Hibernate secondary cache". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report