Authentication Against a REST Service with Spring Security REST Spring Security Authentication RestTemplate Table of Contents 1. Overview 2. The Goal 3. The Client 4. Testing the Authentication Service 5. Conclusion 1. Overview This article is focused on how to authenticate against a secure REST API that provides a RESTful… Continue Reading authentication-against-a-third-party-service

CrudRepository, JpaRepository, and PagingAndSortingRepository in Spring Data 1. Overview In this quick article, we’ll focus on different kinds of Spring Data repository interfaces and their functionality. We’ll touch on: CrudRepository PagingAndSortingRepository JpaRepository Simply put, every repository in Spring Data extends the generic Repository interface, but beyond that, they do each… Continue Reading spring-data-repositories