Is it possible to make pointcut using Spring AOP for methods and type having annotation which was annotated with some annotation. Here\'s my custom annotation:
@
I found solution.
I made such pointcut:
within(@(@test.security.access.AccessRestriction *) *) || execution(@(@test.security.access.AccessRestriction *) * *(..))