我(当然)试图使用许多我不太了解的结构来维护项目.在试图弄清楚
Spring中的AOP使用的过程中,我遇到了带有以下注释的方法:
@Around(value =“@ annotation(annotation)”)
所以@Around意味着我们在AOP中执行方法切入点的’around’版本,我明白了.我不知道其他部分是什么意思. Spring文档提供以下内容:
@annotation – limits matching to join points where the subject of the
join point (method being executed in Spring AOP) has the given
annotation
我不知道这意味着什么 – “在Spring AOP中执行的方法”听起来像建议的方法,但我不知道我(或Spring)如何找出建议的方法.听起来它是具有“给定注释”的方法,但如果是这样,那么给出了什么注释?
这个注释建议了哪些方法?还有什么意思呢?