tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 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..*(..))")
02public Object loggingService(ProceedingJoinPoint joinPoint) throws Throwable {
03 
04    //Get class and method names
05    String className = joinPoint.getSignature().getDeclaringType().getName();
06    String methodName = joinPoint.getSignature().getName();
07 
08    //Get annotations on class and method
09    MethodSignature signature = (MethodSignature) joinPoint.getSignature();
10    Class<?> declaredClass = signature.getDeclaringType();
11             
12    MyAnnotation classLevelAnnotation = declaredClass.getAnnotation(MyAnnotation.class);
13    MyAnnotation methodLevelAnnotation = signature.getMethod().getAnnotation(MyAnnotation.class);
14 
15}

 
  


  
bl  br