Spring에서 지원되지 않는 AspectJ 포인트컷 지정자를 보고합니다.

예:


<beans>
  <aop:config >
      <aop:pointcut expression="@this(Anno)  <!-- '@this' 포인트컷 지정자는 Spring에서 지원되지 않습니다 -->
                  and adviceexecution()"/> <!--  'adviceexecution' 포인트컷 지정자는 Spring에서 지원되지 않습니다 -->
      <aop:pointcut expression="!@annotation(Anno)"/>
    </aop:config>
</beans>