18
18
19
19
import java .lang .annotation .Annotation ;
20
20
import java .lang .reflect .Constructor ;
21
+ import java .lang .reflect .Field ;
21
22
import java .lang .reflect .Method ;
22
23
import java .util .Map ;
23
24
import java .util .StringTokenizer ;
37
38
38
39
import org .springframework .aop .framework .AopConfigException ;
39
40
import org .springframework .core .ParameterNameDiscoverer ;
41
+ import org .springframework .core .SpringProperties ;
40
42
import org .springframework .core .annotation .AnnotationUtils ;
41
43
import org .springframework .lang .Nullable ;
42
44
@@ -58,6 +60,23 @@ public abstract class AbstractAspectJAdvisorFactory implements AspectJAdvisorFac
58
60
private static final Class <?>[] ASPECTJ_ANNOTATION_CLASSES = new Class <?>[] {
59
61
Pointcut .class , Around .class , Before .class , After .class , AfterReturning .class , AfterThrowing .class };
60
62
63
+ private static final String AJC_MAGIC = "ajc$" ;
64
+
65
+ /**
66
+ * System property that instructs Spring to ignore ajc-compiled aspects
67
+ * for Spring AOP proxying, restoring traditional Spring behavior for
68
+ * scenarios where both weaving and AspectJ auto-proxying are enabled.
69
+ * <p>The default is "false". Consider switching this to "true" if you
70
+ * encounter double execution of your aspects in a given build setup.
71
+ * Note that we recommend restructuring your AspectJ configuration to
72
+ * avoid such double exposure of an AspectJ aspect to begin with.
73
+ * @since 6.1.15
74
+ */
75
+ public static final String IGNORE_AJC_PROPERTY_NAME = "spring.aop.ajc.ignore" ;
76
+
77
+ private static final boolean shouldIgnoreAjcCompiledAspects =
78
+ SpringProperties .getFlag (IGNORE_AJC_PROPERTY_NAME );
79
+
61
80
62
81
/** Logger available to subclasses. */
63
82
protected final Log logger = LogFactory .getLog (getClass ());
@@ -67,7 +86,8 @@ public abstract class AbstractAspectJAdvisorFactory implements AspectJAdvisorFac
67
86
68
87
@ Override
69
88
public boolean isAspect (Class <?> clazz ) {
70
- return (AnnotationUtils .findAnnotation (clazz , Aspect .class ) != null );
89
+ return (AnnotationUtils .findAnnotation (clazz , Aspect .class ) != null &&
90
+ (!shouldIgnoreAjcCompiledAspects || !compiledByAjc (clazz )));
71
91
}
72
92
73
93
@ Override
@@ -114,6 +134,16 @@ private static AspectJAnnotation findAnnotation(Method method, Class<? extends A
114
134
}
115
135
}
116
136
137
+ private static boolean compiledByAjc (Class <?> clazz ) {
138
+ for (Field field : clazz .getDeclaredFields ()) {
139
+ System .out .println (clazz + ": " + field .getName ());
140
+ if (field .getName ().startsWith (AJC_MAGIC )) {
141
+ return true ;
142
+ }
143
+ }
144
+ return false ;
145
+ }
146
+
117
147
118
148
/**
119
149
* Enum for AspectJ annotation types.
0 commit comments