Introduction to Java Config for Spring Security 1. Overview This article is an introduction to Java configuration for Spring Security which enables users to easily configure Spring Security without the use of XML. Java configuration was added to the Spring framework in Spring 3.1 and extended to Spring Security in… Continue Reading java-config-spring-security

Broadcasting and Multicasting in Java 1. Introduction In this article, we describe how one-to-all (Broadcast) and one-to-many (Multicast) communications can be handled in Java. The broadcast and multicast concepts outlined in this article are based on the UDP protocol. We start with a quick recap of datagrams and broadcasting and… Continue Reading java-broadcast-multicast

OAuth2 Remember Me with Refresh Token 1. Overview In this article, we will add a “Remember Me” functionality to an OAuth 2 secured application, by leveraging the OAuth 2 Refresh Token. This article is a continuation of our series on using OAuth 2 to secure a Spring REST API, which… Continue Reading spring-security-oauth2-remember-me