[jboss-user] [EJB/JBoss] - Re: how to exclude a caller in interceptor
john_woo@canada.com
do-not-reply at jboss.com
Fri Aug 31 07:42:17 EDT 2007
"waynebaylor" wrote : you could try something like:
|
|
| | <typedef
| | name="intercept_this"
| | expr="class(my.package.*)"/>
| |
| | <typedef
| | name="dont_intercept"
| | expr="class($instanceof{@MessageDriven})"/>
| |
| | <pointcut name="myPointcut"
| | expr="execution(public * $typedef{intercept_this}->*(..))
| | AND !execution(publiic * $typedef{dont_intercept}->*(..))"/>
| |
| | <bind pointcut="myPointcut">
| | <interceptor class="the.interceptor.MyInterceptor"/>
| | </bind>
| |
|
| notice the use of AND along with the !(not).
Thanks lots.
Can you tell where I can find more examples and the explanation for the descriptor?
John
Toronto
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079953#4079953
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079953
More information about the jboss-user
mailing list