spring aop config
trying to do the below, basic开发者_如何学Goally capture all calls to all beans that end in "Service", except for calls to beans that end in "BlahService". But this isn't working. Do i have this correct?
<aop:advisor pointcut="bean(*Service) and not bean(*BlahService)"
advice-ref="someAdvisor" />
精彩评论