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>