@Pointcut("execution(* com.company.software.module.detail.servicelayer.*.*(..))")
is the path to a specific package I want to advise.
How can I optimize module.detail to get a more common pointcut that advises all calls in packages who are targeted to the service layer?
thx


Reply With Quote