This content has been marked as final.
Show 1 reply
-
1. Negation Pointcut Example
dkumaran May 16, 2011 3:05 AM (in response to dkumaran)finally i have resolved the issue as below.
<bind pointcut="execution( * com.mycom.common.*->*(..) )
AND !execution( * com.mycom.common.util.*->*(..) ) ">
<interceptor-ref name="com.mycom.aop.MyInterceptor"/>
</bind>
thanks.