vous pouvez le faire en utilisant aop de printemps, avec des annotations @Around
Comment i AOP exploitation forestière m s'en œuvre:
ajouter à ce applicationContext.xml
<aop:aspectj-autoproxy/>
<context:annotation-config/>
<context:component-scan base-package="com.company.*"/>
créer la classe suivante dans le paquet com.company *:.
package com.company.*;
import org.apache.log4j.Logger;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
import org.springframework.util.StopWatch;
@Component
@Aspect
public class AOPMethodLogger {
@Around("bean(*Service)")
public Object timeMethod(ProceedingJoinPoint joinPoint) throws Throwable {
StopWatch stopWatch = new StopWatch();
stopWatch.start();
Object retVal = joinPoint.proceed();
stopWatch.stop();
if(stopWatch.getTotalTimeMillis() > 35){
StringBuffer logMessageStringBuffer = new StringBuffer();
logMessageStringBuffer.append(joinPoint.getTarget().getClass().getName());
logMessageStringBuffer.append(".");
logMessageStringBuffer.append(joinPoint.getSignature().getName());
logMessageStringBuffer.append("(");
logMessageStringBuffer.append(joinPoint.getArgs());
logMessageStringBuffer.append(")");
logMessageStringBuffer.append(" execution time: ");
logMessageStringBuffer.append(stopWatch.getTotalTimeMillis());
logMessageStringBuffer.append(" ms");
System.out.println(logMessageStringBuffer.toString());
}
return retVal;
}
}