Spring Boot and Cache Abstraction With Hazelcast
Once you've mastered the basics of cache abstraction with Spring, consider moving onto Hazelcast for more options while incorporating a time-to-live policy.
Join the DZone community and get the full member experience.
Join For FreePreviously we got started with Spring cache abstraction using the default cache manager that Spring provides.
Although this approach might suit our needs for simple applications, in the case of complex problems, we need to use different tools with more capabilities. Hazelcast is one of them. Hazelcast is hands down a great caching tool when it comes to a JVM-based application. By using Hazelcast as a cache, data is evenly distributed among the nodes of a computer cluster, allowing for horizontal scaling of available storage.
We will run our codebase using spring profiles thus ‘hazelcast-cache’ will be our profile name.
group 'com.gkatzioura'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-cache")
compile("org.springframework.boot:spring-boot-starter")
compile("com.hazelcast:hazelcast:3.7.4")
compile("com.hazelcast:hazelcast-spring:3.7.4")
testCompile("junit:junit")
}
bootRun {
systemProperty "spring.profiles.active", "hazelcast-cache"
}
As you can see, we updated the Gradle file and added two extra dependencies — hazelcast and hazelcast-spring. Also, we changed the profile that our application will run by default.
Our next step is to configure the Hazelcast cache manager.
package com.gkatzioura.caching.config;
import com.hazelcast.config.Config;
import com.hazelcast.config.EvictionPolicy;
import com.hazelcast.config.MapConfig;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
/**
* Created by gkatzioura on 1/10/17.
*/
@Configuration
@Profile("hazelcast-cache")
public class HazelcastCacheConfig {
@Bean
public Config hazelCastConfig() {
Config config = new Config();
config.setInstanceName("hazelcast-cache");
MapConfig allUsersCache = new MapConfig();
allUsersCache.setTimeToLiveSeconds(20);
allUsersCache.setEvictionPolicy(EvictionPolicy.LFU);
config.getMapConfigs().put("alluserscache",allUsersCache);
MapConfig usercache = new MapConfig();
usercache.setTimeToLiveSeconds(20);
usercache.setEvictionPolicy(EvictionPolicy.LFU);
config.getMapConfigs().put("usercache",usercache);
return config;
}
}
Another change that we have to implement is to change UserPayload into a serializable Java object, since objects stored in Hazelcast must be serializable.
package com.gkatzioura.caching.model;
import java.io.Serializable;
/**
* Created by gkatzioura on 1/5/17.
*/
public class UserPayload implements Serializable {
private String userName;
private String firstName;
private String lastName;
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
}
The result is our previous spring-boot application integrated with Hazelcast instead of the default cache, configured with a TTL policy.
You can find the source code on GitHub.
Published at DZone with permission of Emmanouil Gkatziouras, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments