Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save qzagarese/e900126628b4eb7f6196ac338535e354 to your computer and use it in GitHub Desktop.
Save qzagarese/e900126628b4eb7f6196ac338535e354 to your computer and use it in GitHub Desktop.
public class MyAnnotationHandler implements AnnotationHandler<MyAnnotation> {
@Override
public void handle(ScanContext scanContext, FrameworkAnnotationContext<MyAnnotation> annotationContext) {
System.out.println("Foo is " + annotationContext.getAnnotation().foo());
System.out.println("Bar is " + annotationContext.getAnnotation().bar());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment