是否可以参数化一个方面?现在我有一个@Integration Aspect,我的切入点如下:
@AfterReturning(pointcut = "@annotation(Integration)",returning = "result")
所以,无论在哪里找到@Integration,它都会调用这个方法。我可以实现这样的事情:
@Integration("new") or @Integration("deleted"),
避免为每个案例创建新的注释?
此外,如果可能,如何访问此提供的值(“新”或“已删除”)。
提前致谢 :)