I have the following two aspects
Code:@Aspect
@Order(1)
public class AspectA
{
@Before("............")
public void doit() {}
}
I am using load time weaving. Am I correct that Aspect A before advice always executes first before Aspect B before advice?Code:@Aspect
@Order(2)
public class AspectB
{
@Before(".............")
public void doit() {}
}

