|
Articles > Spring > How to get Class and Method Annotations from a Proceeding Join Point |
|
How to get Class and Method Annotations from a Proceeding Join Point
Author: Venkata Sudhakar
The below example shows how to retrieve Class and Method level annotations from ProceedingJoinPoint .
01 | @Around ( "execution(* com.bethecoder.server.service..*(..))" ) |
02 | public Object loggingService(ProceedingJoinPoint joinPoint) throws Throwable { |
05 | String className = joinPoint.getSignature().getDeclaringType().getName(); |
06 | String methodName = joinPoint.getSignature().getName(); |
09 | MethodSignature signature = (MethodSignature) joinPoint.getSignature(); |
10 | Class<?> declaredClass = signature.getDeclaringType(); |
12 | MyAnnotation classLevelAnnotation = declaredClass.getAnnotation(MyAnnotation. class ); |
13 | MyAnnotation methodLevelAnnotation = signature.getMethod().getAnnotation(MyAnnotation. class ); |
|
|