Spring:通知(Advice)

通知的分类: 前置通知(MethodBeforeAdvice)、后置通知(AfterReturningAdvice)、环绕通知(MethodInterceptor)、异常通知(ThrowsAdvice) 我们先定义一个接口:ISomeInterface public interface ISomeInterface { String doFirst(); void doSecond(); } 我们
相关文章
相关标签/搜索