A simple Spring Boot project to learn and demonstrate Aspect Oriented Programming (AOP) concepts such as Aspect, Weaving, PointCut, JoinPoint, and Advice. Spring Boot application with REST API.
Before we can do any caching, we need something to cache. Here's a simple DataProvider class that has a couple of expensive operations in its interface: /** * @author adrian at aspectprogrammer.org * ...