1 16 17 package org.springframework.aop.framework; 18 19 import java.lang.reflect.Method ; 20 21 import org.springframework.aop.AfterReturningAdvice; 22 23 28 public class CountingAfterReturningAdvice extends MethodCounter implements AfterReturningAdvice { 29 30 public void afterReturning(Object o, Method m, Object [] args, Object target) throws Throwable { 31 count(m); 32 } 33 34 } | Popular Tags |