``` @Around(" execution(hu..web.sync.controlle...
# spring
m
Copy code
@Around(" execution(hu..web.sync.controller.SomeController *(..))")
    fun auditInfo(joinPoint: ProceedingJoinPoint) {/*never arrive here*/}
c
it needs to be
open
and kapt is irrelevant for spring-aop I think (I may be wrong)
m
it is open I added that plugin too
the same code is working in java so it have to be something with kotlin
d
does it catch Java JoinPoints but not Kotlin ones?
m
yes
d
then you need to check what is the signature that Kotlin compiler is generating for that particular method
is not always evident
you can check on Kotlin Bytecode viewer on Tools > Kotlin inside IDEA
you can alter up to some extend which signature is generated using annotations