Advertisements

Hazelcast Distributed Cache with Spring Boot

Hazelcast Distributed Cache Cluster This article will explain how to build Hazelcast Embedded Cluster for distributed cache in Spring Boot application. Multiple instances of Spring Boot application will build Hazelcast local embedded cluster. Each instance is part of the cluster and cached objects will be synced across all cluster members. Table of Contents Why Caching is [...]

Read more

RESTful Web Services Integration Testing with Spring Boot

This article shows an example of Integration Testing of RESTful Web Services using Spring Boot’s test framework support. It uses @SpringBootTest annotation to load an [...]

RESTful Web Services Unit Testing with Spring Boot

This article explains how Unit Testing of RESTful Web Services is performed using Spring Boot Test framework. It uses MockMvc to provide Spring MVC infrastructure without [...]

RESTful Web Service CRUD Operations with Spring Boot

This article shows an example to create RESTful Web Service to perform CRUD operations using Spring Boot framework. We will be developing a complete Spring Boot Web [...]

Generic DAO in Hibernate

This article shows an example of implementation of Generic DAO in Hibernate for common CRUD operations. Generic DAO is used for not to repeat CRUD operation methods for each [...]

Spring Security 4 with Spring MVC and Hibernate

This article shows an example of how to use Spring Security 4 to secure Spring MVC application. UserDetailsService is implemented using Hibernate. It also explains how to lock [...]