Java Spring Framework Question:

What is a Jointpoint?

Tweet Share WhatsApp

Answer:

A joinpoint is a point in the execution of the application where an aspect can be plugged in. This point could be a method being called, an exception being thrown, or even a field being modified. These are the points where your aspect’s code can be inserted into the normal flow of your application to add new behavior.

Download Spring Framework PDF Read All 43 Spring Framework Questions
Previous QuestionNext Question
What is an Aspect?What is an Advice?