我是 AOP aspectJ 和 Java 中的 Spring 新手,我想问一下 aspectJ 是否可以通过 Type 拦截。
@After("execution(* *.*.*.*.*.findAll(..))")
private void afterGet() {
logger.info("Persons Listed");
}
上面的代码是用来拦截 findAll() 方法的,我想知道 Integer, double 是否可以拦截?对于返回类型,或者即使该类型在程序中被调用。