Hello,
I have defined the following pointcut:
<aop:config>
<aopointcut id="relationshipGetRelatedPeoplePointCut"
expression="execution(* uk.co.bbc.opensocial.core.service.RelationshipServ ice.getRelatedPeople(..))" />
<aop:advisor advice-ref="relationshipMemCacheInterceptor"
pointcut-ref="relationshipGetRelatedPeoplePointCut" />
</aop:config>
This works fine for methods called outside the actual class but when i call:
this.getRelatedPeople from inside the RelationshipService class the pointcut is not executed. This class is initialized in Spring so i expected everything to work properly.
Any ideas?
Thanks in advance.
Mark.


ointcut id="relationshipGetRelatedPeoplePointCut"
Reply With Quote
