This document provides an overview of Aspect Oriented Programming (AOP) using Spring. It defines key AOP concepts like join points, pointcuts, advice, and aspects. It discusses how AOP can be used to separate cross-cutting concerns from core application logic. It also presents examples of implementing different types of advice like before, after, after-returning and around advice using Spring AOP annotations. Finally, it provides examples of configuring AOP using XML and the jars required to implement AOP with AspectJ.