Aspect 用于方法出入口日志记录

阅读更多
@Aspect
public class Aspect
{

    @Before("execution(* com.test.*.*(..))")
    public void logBefore(JoinPoint joinPoint)
    {
        logEnter.....
    }

    @After("execution(* com.test.*.*(..))")
    public void logAfter(JoinPoint joinPoint)
    {
         logExit.....
    }
}


Spring config:

	


备注:
Spring 3.1.0

你可能感兴趣的:(aspect,Spring)