如何在注释之前创建。我想在执行实际方法之前执行premethod。 例如:
public class MyClass1 {
void preSubmit() {
}
@preMethod(name = 'preSubmit')
public void submit() {
}
//No preSubmit execution here.
private void otherMethod() {
}
private void otherMethod1() {
}
}
这个preSubmit()应该只对类中的几个方法执行。
有很多类具有相同的场景。
使用AspectJ,我无法指定所有需要preSubmit()的方法。
我想在JUnit / AspectJ中创建与@Before注释相同的注释。