0 votes
in Spring by

In Spring AOP, what defines a point where an advice should be executed?

a) Aspect

b) Join point

c) Pointcut

d) Advisor

1 Answer

0 votes
by
c) Pointcut

Explanation:

Pointcut defines the expressions that determine which join points (like method executions) should be matched for advice execution.
...