I was going through spring documentation, and this is what it says about join points
" Join point: a point during the execution of a program, such as the execution of a method or the handling of an exception. In Spring AOP, a join point always represents a method execution."
and also this is what the document says regarding "before advice"..
"Before advice: Advice that executes before a join point, but which does not have the ability to prevent execution flow proceeding to the join point (unless it throws an exception)."
When they say, the before advice executes before a join point, where exactly is that point located for a given method.Lets say we have the following method, is it correct to assume that it will be located at the place where we have the greater than
> symbol inside the method ?
public void Calculate()
{
>
// some logic
}