Example & Tutorial understanding programming in easy ways.

What is JointPoint?

Join point is any point in your program such as method execution, exception handling, field access etc. Spring supports only method execution join point.The join point represents a point in an application where we can plug-in an AOP aspect. It is the actual place in the application where an action will be taken using Spring AOP framework.
  

Read More →