AspectJ のポイントカット指定子で、Spring がサポートしていないものを報告します。
例:
<beans>
<aop:config >
<aop:pointcut expression="@this(Anno) <!-- '@this' ポイントカット指定子は Spring によってサポートされていません -->
and adviceexecution()"/> <!-- 'adviceexecution' ポイントカット指定子は Spring によってサポートされていません -->
<aop:pointcut expression="!@annotation(Anno)"/>
</aop:config>
</beans>