I\'m using AspectJ to advice all the public methods which do have an argument of a chosen class. I tried the following:
pointcut permissionCheckMethods(Sessi
@Before(value = "execution(public * *(.., org.springframework.data.domain.Pageable , ..))") private void isMethodPageable () { log.info("in a Aspect point cut isPageableParameterAvailable()"); }