Tag: static pointcut
Spring AOP Static Pointcut Example
by  Java4s | 5 Comments
  [ Ask Question ]
Pointcut verifies whether a particular method of particular class is eligible for getting the advice or not. It means the pointcut verifies the class names and method names, but not run time parameters of the method. in spring AOP…
NameMatchMethodPointcut Class In Spring AOP
by  Java4s | 5 Comments
  [ Ask Question ]
NameMatchMethodPointcut class is going to verify whether the method names of a spring bean class are matching with the given criteria or not. While configuring this pointcut class into xml, we use mappedName or mappedNames property of the class…