Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] pointcut does not match private static method

(this might trivial, but I am not AspectJ guru - yet)

Hi!

I have a problem with the following pointcut 


    pointcut TRANSACTIONAL(Transactional transactionalAnnotation):
        execution(@Transactional *
se.stickybit.licensetracker.server..*(..))
        && @annotation(transactionalAnnotation)
        && this(DAOCenterContainer);    

only matching public non-static methods under
"se.stickybit.licensetracker.server..*".

The following method e.g. is not matched when it is private static

    @Transactional(level = TRANSACTION_LEVEL.READ_COMMITTED)
    private static void checkLicense(final DAOCenter daoCenter) throws
InvalidLicenseException


if I change it to public void checkLicense then it matches.

Doesn't pointcut match non-static methods per default?

I want my around advice to handle all methods regardless of "member" access
and static/non-static.
Do I need to have two pointcuts? And apply the advice on both?

I tried:

    pointcut TRANSACTIONAL(Transactional transactionalAnnotation):
        execution(@Transactional private static *
se.stickybit.licensetracker.server..*(..))
        && @annotation(transactionalAnnotation)
        && this(DAOCenterContainer);    

without any luck.


Regards,
Jimisola

PS. Is there a IRC channel for aspectj? I looked around and couldn't find
one. I think it would be very useful for the community.  DS.

-- 
View this message in context: http://www.nabble.com/pointcut-does-not-match-private-static-method-tf2566990.html#a7154770
Sent from the AspectJ - users mailing list archive at Nabble.com.



Back to the top