All Projects → candrews → hibernate-springcache

candrews / hibernate-springcache

Licence: LGPL-2.1 license
Hibernate cache implementation that backs to the Spring Cache abstraction

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to hibernate-springcache

Angularjs Springmvc Sample Boot
A RESTful sample using Spring Boot, Spring MVC, Spring Data and Angular/Bootstrap.
Stars: ✭ 309 (+1526.32%)
Mutual labels:  spring-data, hibernate, spring-data-jpa
BusinessInfrastructurePlatformGroupVersion
A java web project based on Spring Boot using MySQL, Spring MVC, Hibernate, Spring Data JPA, Query DSL, Lombok, Logback, etc.
Stars: ✭ 90 (+373.68%)
Mutual labels:  spring-data, hibernate, spring-data-jpa
TASK-Management-System
Spring Boot and Angular 7 web application for task management .
Stars: ✭ 34 (+78.95%)
Mutual labels:  spring-data, hibernate, spring-data-jpa
Spring Petclinic Rest
REST version of the Spring Petclinic sample application
Stars: ✭ 257 (+1252.63%)
Mutual labels:  spring-data, hibernate, spring-data-jpa
Spring-Boot-2
Spring Boot 2.x examples
Stars: ✭ 33 (+73.68%)
Mutual labels:  spring-data, hibernate, spring-data-jpa
Library
Online Library Management. User can search, check in, checkout book. System adds fines automatically if the book is not checked in by due date
Stars: ✭ 27 (+42.11%)
Mutual labels:  spring-data, hibernate, spring-data-jpa
Spring
Personal notes of preparation to Spring 5 Professional Certification
Stars: ✭ 35 (+84.21%)
Mutual labels:  spring-data, spring-data-jpa
Spring Examples
SpringBoot Examples
Stars: ✭ 67 (+252.63%)
Mutual labels:  spring-data, spring-data-jpa
doc
QuickPerf documentation: https://github.com/quick-perf/doc/wiki/QuickPerf
Stars: ✭ 22 (+15.79%)
Mutual labels:  hibernate, spring-data-jpa
spring-discord-bot
Discord all-purpose bot, made using Spring Boot, JPA, Hibernate, REST, HikariCP. Written for fun, do not take this serious.
Stars: ✭ 26 (+36.84%)
Mutual labels:  hibernate, spring-data-jpa
Atom
Java course materials
Stars: ✭ 293 (+1442.11%)
Mutual labels:  spring-data, hibernate
SpringMVC-Hibernate
J2EE项目系列(二)--博客管理系统(Maven+SpringMVC+Hibernate以及附加分页和一对多查询功能)
Stars: ✭ 48 (+152.63%)
Mutual labels:  hibernate, spring-data-jpa
vogon-java
Vogon - A simple personal finance tracker using Spring Boot and AngularJS
Stars: ✭ 16 (-15.79%)
Mutual labels:  hibernate, spring-data-jpa
Spring Mvc Thymeleaf Crud
Spring MVC CRUD Application with Thymeleaf, HTML5, CSS3 and Bootstrap
Stars: ✭ 14 (-26.32%)
Mutual labels:  spring-data, spring-data-jpa
Hibernate Springboot
Collection of best practices for Java persistence performance in Spring Boot applications
Stars: ✭ 589 (+3000%)
Mutual labels:  spring-data, hibernate
Spring Data Jpa Entity Graph
Spring Data JPA extension allowing full dynamic usage of EntityGraph on repositories
Stars: ✭ 221 (+1063.16%)
Mutual labels:  spring-data, spring-data-jpa
spring-data-jpa-mongodb-expressions
Use the MongoDB query language to query your relational database, typically from frontend.
Stars: ✭ 86 (+352.63%)
Mutual labels:  hibernate, spring-data-jpa
the-apache-ignite-book
All code samples, scripts and more in-depth examples for The Apache Ignite Book. Include Apache Ignite 2.6 or above
Stars: ✭ 65 (+242.11%)
Mutual labels:  spring-data, hibernate
weedow-searchy
Automatically exposes web services over HTTP to search for Entity-related data using a powerful query language
Stars: ✭ 21 (+10.53%)
Mutual labels:  spring-data, spring-data-jpa
Diber-backend
Delivery Service - Spring Boot / Spring Data Jpa / Hibernate / PostgreSQL / OAuth2 Application
Stars: ✭ 22 (+15.79%)
Mutual labels:  hibernate, spring-data-jpa

Hibernate SpringCache

DevOps By Rultor.com Build Status Maven Central Reference Status Dependency Status Javadoc Quality Gate

Hibernate SpringCache is a Hibernate cache implementation that backs to the Spring Cache abstraction. In other words, setup caching once in Spring then use it from Spring and Hibernate so configuration isn't duplicated.

This project has been submitted to Hibernate for inclusion: hibernate/hibernate-orm#1639

Quick Start

  • Minimum requirements — You'll need Java 1.8+, Hibernate 5.3.3+, and Spring 4.3+. Spring Boot 1.4+ is optional. Use version 1.x of this project for Hibernate 5.2 support.
  • Download — Depend on this libary using, for example, Maven:
  <dependency>
    <groupId>com.integralblue</groupId>
    <artifactId>hibernate-springcache</artifactId>
    <version>[INSERT VERSION HERE]</version>
    <type>jar</type>
  </dependency>
  • In application.properties, add: spring.jpa.properties.hibernate.cache.region.factory_class=com.integralblue.hibernate.cache.springcache.SpringCacheRegionFactory
  • If using Spring Boot, that's it - com.integralblue.hibernate.cache.springcache.SpringCacheRegionFactoryAutoConfigure will take care of the rest.
  • If not not using Spring boot, the com.integralblue.hibernate.cache.springcache.SpringCacheRegionFactoryBeanPostProcessor bean post processor must be registered (add it as a bean using Spring Java or XML configuration).
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].