解决方案 »

  1.   

    http://my.oschina.net/itblog/blog/211693
      

  2.   

    能不能说详细点,配置方式该怎么写你不是有addLog方法吗,这里主要是方法public void addLog(JoinPoint point) {
            System.out.println("目标方法为:" + 
                    point.getSignature().getDeclaringTypeName() + 
                    "." + point.getSignature().getName());
            System.out.println("参数为:" + Arrays.toString(point.getArgs()));
        }
      

  3.   

    能不能说详细点,配置方式该怎么写你不是有addLog方法吗,这里主要是方法public void addLog(JoinPoint point) {
            System.out.println("目标方法为:" + 
                    point.getSignature().getDeclaringTypeName() + 
                    "." + point.getSignature().getName());
            System.out.println("参数为:" + Arrays.toString(point.getArgs()));
        }
    非常感谢