Reports @Aspect annotations in Spring versions earlier than 2.5 if there is no <aop:aspectj-autoproxy/> element in the XML configuration.

Example:


@Aspect // '@AspectJ support isn't enabled
class MyAspect {
   ...
}

<beans>
   <!-- <aop:aspectj-autoproxy/> -->
</beans>