I have a situation where there is a generic pointcut and several other specific pointcuts. All I want is generic should execute first and then only specific ones should.
Generic point cut is say,
@Before("execution(public * com.java.*.data(..))")
Specific point cut number 1
@Before("execution(public * com.java.science.*.data(..))")
Specific point cut number 2
@Before("execution(public * com.java.history.*.data(..))")
Specific point cut number 3
@Before("execution(public * com.java.geography.*.data(..))")
Genric point cut should execute first and then the specific ones. Can I have control on that?