Incorrect Spring AOP advice or advisor element
Reports incorrect advices and advisor elements if there are no pointcut
or pointcut-ref
attributes.
Example:
<beans>
<aop:config>
<aop:pointcut id="zzz" expression="args()"/>
<aop:aspect ref="xxx">
<aop:before method="writeArg1" pointcut="execution(* *(String))"/>
<aop:after method="aaa" pointcut-ref="zzz"/>
<aop:after-throwing method="aaa"/> <!--Either 'pointcut' or 'pointcut-ref' attribute must be defined -->
</aop:aspect>
</aop:config>
</beans>
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Spring, 233.SNAPSHOT |
Last modified: 13 July 2023