Method References in Java 1. Overview One of the most welcome changes in Java 8 was the introduction of lambda expressions, as these allow us to forego anonymous classes, greatly reducing boilerplate code and improving readability. Method references are a special type of lambda expressions. They’re often used to create simple… Continue Reading java-method-references

Simple Jenkins Pipeline with Marathon and Mesos 1. Introduction In this article, we’ll be implementing a simple Continuous Delivery pipeline with Jenkins, Marathon and Mesos. First, we will give a high-level overview of the technology stack and architecture, with an explanation of how everything fits together. Following that, we’ll move… Continue Reading jenkins-pipeline-with-marathon-mesos

Spring Security OAuth Login with WebFlux 1. Overview Spring Security added OAuth support for WebFlux starting with the 5.1.x GA. We’ll discuss how to configure our WebFlux application to use OAuth2 Login support. We’ll also discuss how to use WebClient to access OAuth2 secured resources. The OAuth Login configuration for… Continue Reading spring-oauth-login-webflux