The pointcut doesn't match the static method execution because of this component:
which matches a join point if (there is an object bound to 'this' and) the object bound to 'this' is an instance of DAOCenterContainer. For a static method execution join point, there is no object bound to this and so the pointcut does not match. Try using this variation instead:
which will match based on the types in which the executing operations are defined (DAOCenterContainer or any subtype thereof) rather than on runtime types. -- Adrian On 3 Nov 2006, at 09:57, Jimisola Laursen wrote:
|
_______________________________________________ aspectj-users mailing list [email protected] https://dev.eclipse.org/mailman/listinfo/aspectj-users
