报告 Spring 不支持的 AspectJ 切入点指示符。

示例:


<beans >
  <aop:config >
      <aop:pointcut expression="@this(Anno)  <!-- '@this' pointcut designator isn't supported by Spring -->
                  and adviceexecution()"/> <!--  Spring 不支持 'adviceexecution' 切入点指示符 -->
      <aop:pointcut expression="!@annotation(Anno)"/>
    </aop:config>
</beans>