aop.cheatsheet
· β 1 min read
#-#
#-# Pointcut
#-#
A pointcut is a program element that picks out join points and exposes data from the execution context of those join points. Pointcuts are used primarily by advice. They can be composed with boolean operators to build up other pointcuts. any type and number of args ββ
method ββ β
class ββ β β
β β β
@Pointcut(“execution(public * com.demo..(..))”)
β β β
β β ββ any return type