public class TimeIntervalAspect extends SimpleAspect
| Constructor and Description |
|---|
TimeIntervalAspect() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
after(Object target,
Method method,
Object[] args,
Object returnVal)
目标方法执行后的操作
如果 target.method 抛出异常且
|
boolean |
before(Object target,
Method method,
Object[] args)
目标方法执行前的操作
|
after, afterExceptionpublic boolean before(Object target, Method method, Object[] args)
Aspectbefore in interface Aspectbefore in class SimpleAspecttarget - 目标对象method - 目标方法args - 参数public boolean after(Object target, Method method, Object[] args, Object returnVal)
Aspectafter in interface Aspectafter in class SimpleAspecttarget - 目标对象method - 目标方法args - 参数returnVal - 目标方法执行返回值返回true,则不会执行此操作
如果,
返回false,则无论target.method是否抛出异常,均会执行此操作Copyright © 2019. All rights reserved.