基于aop打印日志

利用aop的方式打印日志。
蠻好用的。
廢話不多說,直接上代碼。
1 Log注解定義

//Log.java
package com.sigh.test;
import java.lang.annotation.*;
/**
 * Created by sigh on 2015/6/25.
 */
/**
 * 攔截器定義
 * @see LogAspect
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD})
public @interface Log {
}

2 攔截器定義

//LogAspect.java
package com.sigh.test;
import net.paoding.rose.scanning.context.RoseAppContext;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
/**
 * Created by sigh on 2015/6/25.
 */
@Service
@Aspect
public class LogAspect {
    private static final Logger LOGGER = LoggerFactory.getLogger(LogAspect.class);
    @Pointcut("@annotation(Log)")
    public void logPointcut() {
    }
    @Around("logPointcut()")
    public Object doSurround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        Object[] objects = proceedingJoinPoint.getArgs();
        String name = proceedingJoinPoint.getSignature().getName();
        long startTime = System.currentTimeMillis();
        Object result = proceedingJoinPoint.proceed();

        LOGGER.info("class: {}, function name: {}", proceedingJoinPoint.getTarget().getClass().getName(), name);
        LOGGER.info("in args: <{}>, out args: <{}>", objects, result);
        LOGGER.info("execute time: {}", System.currentTimeMillis() - startTime);

        return result;
    }
    public static void main(String[] args) {
        //ApplicationContext applicationContext = new FileSystemXmlApplicationContext("src/spring-config.xml");
        ApplicationContext applicationContext =  new RoseAppContext().getApplicationContext();
        First first = (First) applicationContext.getBean("first");
        Second second = (Second) applicationContext.getBean("second");
        Third third = (Third) applicationContext.getBean("third");

        first.run(3);
        first.report();
        second.doWork(1, 2, true);
        second.display();
        //third.logTest(new Object[] {first, second});
        third.logTest(null);
    }
}

3 示例測試類

//First.java
package com.sigh.test;
import org.springframework.stereotype.Service;
/**
 * Created by sigh on 2015/6/9.
 */
@Service
public class First {
    @Log
    public boolean run(int x) {
        System.out.println("first " + x);

        return true;
    }

    @Log
    public void report() {
        System.out.println("report first");
    }
}
//Second.java
package com.sigh.test;
import org.springframework.stereotype.Service;
/**
 * Created by sigh on 2015/6/9.
 */
@Service
public class Second {
    @Log
    public long doWork(int a, long b, boolean c) {
        System.out.println("second " + a + " " + b + " " + c);

        return 3;
    }

    @Log
    public void display() {
        System.out.println("display second");
    }
}
//Third.java
package com.sigh.test;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.List;
/**
 * Created by sigh on 2015/6/26.
 */
@Service
public class Third {
    @Log
    public List<Object> logTest(Object[] objects) {
        List<Object> list = new ArrayList<Object>();
        for (Object o : objects) {
            list.add(o);
        }

       return list;
    }
}

4 applicationContext.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
     http://www.springframework.org/schema/aop
     http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
     http://www.springframework.org/schema/context
     http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    <context:component-scan base-package="com.sigh.test">
    </context:component-scan>
    <aop:aspectj-autoproxy proxy-target-class="true" />
</beans>

**<aop:aspectj-autoproxy proxy-target-class="true" /> **
這行很重要,沒有的話無法攔截,具體是jdk代理和cglib代理的區(qū)別問題,如下:
(1) jdk代理實(shí)現(xiàn)的具體過程:
a. 獲取指定類上的所有接口列表
b. 確定要生成的代理類的類名,默認(rèn)為com.sun.proxy.$ProxyXXXX
c. 根據(jù)需要實(shí)現(xiàn)的接口信息,在代碼中動(dòng)態(tài)創(chuàng)建該P(yáng)roxy類的字節(jié)碼
d. 將對(duì)應(yīng)的字節(jié)碼轉(zhuǎn)換為相應(yīng)的class對(duì)象
e. 創(chuàng)建InvocationHandler實(shí)例handler,用來處理Proxy所有方法調(diào)用
f. Proxy的class對(duì)象以創(chuàng)建的handler對(duì)象為參數(shù),實(shí)例化一個(gè)Proxy對(duì)象

(2) cglib代理的具體過程:
a. 查找指定類上的所有非final的public類型的方法定義
b. 將這些方法的定義轉(zhuǎn)換為字節(jié)碼
c. 將組成的字節(jié)碼轉(zhuǎn)換成相應(yīng)的代理的class對(duì)象
d. 實(shí)現(xiàn)MethodIntereceptor接口,用來處理對(duì)代理類上所有方法的請(qǐng)求

(3) 兩者的區(qū)別:
a. jdk使用接口+組合的方式實(shí)現(xiàn),而cglib使用繼承的方式實(shí)現(xiàn),因此對(duì)于沒有接口的類來說,jdk代理不可用
b. 通常來說,jdk代理的所有功能cglib都具有,反之不然

基于以上原理,可以解釋上述問題。
a. 當(dāng)沒有增加<aop:aspectj-autoproxy proxy-target-class="true" />時(shí),aop不生效——因?yàn)閍op默認(rèn)使用jdk代理實(shí)現(xiàn),而被攔截的類不具有接口。因此需要使用cglib代理
b. 當(dāng)方法非public時(shí),aop不生效——因?yàn)閏glib代理只代理非final的public類型方法

ps: 1. mvn配置起來很惡心,還有包的沖突問題
ps: 2. 如果不把目標(biāo)方法設(shè)置為public,使用注解攔截會(huì)有問題,調(diào)了半個(gè)下午

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容