Skip to content

Commit 6d7cd9c

Browse files
committed
Defensive handling of incompatible advice methods
This covers AspectJ transaction and caching aspects when encountered by Spring AOP. Closes gh-32882 See gh-32793
1 parent 73eb6f0 commit 6d7cd9c

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

spring-aop/src/main/java/org/springframework/aop/aspectj/annotation/ReflectiveAspectJAdvisorFactory.java

+10-2
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,16 @@ public Advisor getAdvisor(Method candidateAdviceMethod, MetadataAwareAspectInsta
213213
return null;
214214
}
215215

216-
return new InstantiationModelAwarePointcutAdvisorImpl(expressionPointcut, candidateAdviceMethod,
217-
this, aspectInstanceFactory, declarationOrderInAspect, aspectName);
216+
try {
217+
return new InstantiationModelAwarePointcutAdvisorImpl(expressionPointcut, candidateAdviceMethod,
218+
this, aspectInstanceFactory, declarationOrderInAspect, aspectName);
219+
}
220+
catch (IllegalArgumentException | IllegalStateException ex) {
221+
if (logger.isDebugEnabled()) {
222+
logger.debug("Ignoring incompatible advice method: " + candidateAdviceMethod, ex);
223+
}
224+
return null;
225+
}
218226
}
219227

220228
@Nullable

spring-aspects/src/test/resources/org/springframework/aop/aspectj/autoproxy/ajcAutoproxyTests.xml

+6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,21 @@
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns:aop="http://www.springframework.org/schema/aop"
5+
xmlns:cache="http://www.springframework.org/schema/cache"
56
xmlns:context="http://www.springframework.org/schema/context"
67
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-2.0.xsd
78
http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop-2.0.xsd
9+
http://www.springframework.org/schema/cache https://www.springframework.org/schema/cache/spring-cache-3.1.xsd
810
http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context-2.5.xsd">
911

1012
<aop:aspectj-autoproxy/>
1113

1214
<context:spring-configured/>
1315

16+
<cache:annotation-driven mode="aspectj"/>
17+
18+
<bean id="cacheManager" class="org.springframework.cache.support.NoOpCacheManager"/>
19+
1420
<bean id="myAspect" class="org.springframework.aop.aspectj.autoproxy.CodeStyleAspect" factory-method="aspectOf">
1521
<property name="foo" value="bar"/>
1622
</bean>

0 commit comments

Comments
 (0)