An Introduction to Spring Data Redis Reactive 1. Introduction In this tutorial, we’re going to learn how to configure and implement Redis operations using Spring Data’s ReactiveRedisTemplate.  We’ll go over the basic usages of the ReactiveRedisTemplate like how to store and retrieve objects in Redis. And we’ll take a look at… Continue Reading spring-data-redis-reactive

A Guide to Queries in Spring Data MongoDB 1. Overview This article will focus on building out different types of queries in Spring Data MongoDB. We’re going to be looking at querying documents with Query and Criteria classes, auto-generated query methods, JSON queries and QueryDSL. For the Maven setup, have… Continue Reading queries-in-spring-data-mongodb

Generate a Secure Random Password in Java 1. Introduction In this tutorial, we’ll look at various methods we can use to generate a secure random password in Java. In our examples, we’ll be generating ten-character passwords, each with a minimum of two lower case characters, two uppercase characters, two digits,… Continue Reading java-generate-secure-password

Introduction to GraphQL 1. Overview GraphQL is a query language, created by Facebook with the purpose of building client applications based on intuitive and flexible syntax, for describing their data requirements and interactions. One of the primary challenges with traditional REST calls is the inability of the client to request… Continue Reading graphql