Spring AOP 實現方法日誌記錄以及執行時間打印

注意:proxy-target-class="true" 這是決定是走jdk代理仍是spring cglib代理的。高版本的(貌似)能夠忽略。spring

 1.在spring 相關配置文件中假如以下配置: apache

  <!-- 日誌時間打印 -->  
   <aop:config proxy-target-class="true">    
       <!-- 這裏攔截 service 包中的全部方法 -->    
       <aop:advisor id="methodTimeLog" advice-ref="methodTimeAdvice" pointcut="execution(* *..service..*(..))"/>    
   </aop:config>    
   
   <bean id="methodTimeAdvice" class="com.ra.fire.utils.MethodTimeAdvice">
   </bean>this

2.實現spring aopalliance-1.0.jar 包中的的 MethodInterceptor 接口,實現類以下:spa

package com.ra.fire.utils;代理

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.time.StopWatch;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;日誌

public class MethodTimeAdvice implements MethodInterceptor {
    private Logger logger = LoggerFactory.getLogger(this.getClass());
      
    /**  
     * 攔截要執行的目標方法  
     */  
    public Object invoke(MethodInvocation invocation) throws Throwable {   
        //用 commons-lang 提供的 StopWatch 計時,Spring 也提供了一個 StopWatch   
        StopWatch clock = new StopWatch();   
        clock.start(); //計時開始   
        Object result = invocation.proceed();   
        clock.stop();  //計時結束   
           
        //方法參數類型,轉換成簡單類型   
        Class[] params = invocation.getMethod().getParameterTypes();   
        String[] simpleParams = new String[params.length];   
        for (int i = 0; i < params.length; i++) {   
            simpleParams[i] = params[i].getSimpleName();   
        }   
           
        if(clock.getTime()>=200){
            logger.info("====Methods execute time:" + clock.getTime() + " ms ["  
                    + invocation.getThis().getClass().getName() + "."  
                    + invocation.getMethod().getName() + "("+StringUtils.join(simpleParams,",")+")] ");  
        }
        return result;   
    }   接口


}
 get

相關文章
相關標籤/搜索