0 votes
in Spring by

In Spring AOP, what is an "advice"?

a) A recommendation given by the Spring team

b) A method that handles a cross-cutting concern

c) An error thrown by the AOP process

d) A configuration recommendation

1 Answer

0 votes
by
b) A method that handles a cross-cutting concern

Explanation:

An advice is an action taken by an aspect for a particular join point (like method execution).
...