Is it possible to create a custom @Aspect and apply it to the Classes/Methods within Spring Security (3.0.3)?
I'm trying to do some logging of logon/logoff requests and none of my Advices are being triggered.
I'm using @AspectJ annotations and here is how I'm decorating my method:
@After("execution (* org.springframework.security.authentication.ProviderManager.doAuthentication(..))")