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