Spring Security with Stormpath 1. Overview Stormpath has developed solid support for Spring Boot and Spring Security – to make the integration with their infrastructure and services quite straightforward. In this article, we’re going to have a look at a minimalistic setup and integration of Stormpath with Spring Security. 2.… Continue Reading spring-security-stormpath

Check If a String Contains a Substring 1. Overview In this tutorial, we’ll review several ways of checking if a String contains a substring, and we’ll compare the performance of each. 2. String.indexOf Let’s first try using the String.indexOf method. indexOf gives us the first position where the substring is… Continue Reading java-string-contains-substring

Common String Operations in Java 1. Introduction String-based values and operations are quite common in everyday development, and any Java developer must be able to handle them. In this tutorial, we’ll provide a quick cheat sheet of common String operations. Additionally, we’ll shed some light on the differences between equals and “==”… Continue Reading java-string-operations