AspectJ

对于AspectJ,AspectJ的切入点和目标的切入方法不能是在同一个类中。如果是在同一个类中,那么切面切点注入将会是无效的。
AspectJ的所有切面写在一个带有@AspectJ注解的类中

package com.liangzhifeng.demo.entity;

import org.springframework.stereotype.Component;

@Component
public class TestMain {

    public String getStr(){
           String result = "this is first world";
           log.info("create the string: " + result);
           return result;
    }
}


package com.liangzhifeng.demo.entity;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class ServiceMonitor {

    @Before("execution(* com.liangzhifeng.demo.entity.TestMain.getStr(..))")
    public void before(JoinPoint joinPoint) {
        System.out.println("Completed before: " + joinPoint);
    }

    @Around("execution(* com.liangzhifeng.demo.entity.TestMain.getStr(..))")
    public void around(JoinPoint joinPoint) {
        System.out.println("Completed around: " + joinPoint);
    }

    @AfterReturning("execution(* com.liangzhifeng.demo.entity.TestMain.getStr(..))")
    public void afterReturning(JoinPoint joinPoint) {
        System.out.println("Completed afterReturning: " + joinPoint);
    }

    @After("execution(* com.liangzhifeng.demo.entity.TestMain.getStr(..))")
    public void after(JoinPoint joinPoint) {
        System.out.println("Completed after: " + joinPoint);
    }
}

package com.liangzhifeng.demo.controller;

import com.liangzhifeng.demo.entity.TestMain;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@Slf4j
public class TestController {

    @Autowired
    private TestMain testMain;

    @RequestMapping(value = "/testInsert")
    @ResponseBody
    public String insert(){
        System.out.println("get the string: " + testMain.getStr());
        return "success";
    }
}

执行结果

Completed aroundexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterReturning: execution(String com.liangzhifeng.demo.entity.TestMain.getStr())
get the string: null

可以看到@Before并没有被调用,并且getStr()日志没有打印,然后返回值是null,这是因为@Around影响了。为了不影响@Before的执行,我们必须在@Around方法改成如下:


@Around("execution(* com.liangzhifeng.demo.entity.TestMain.getStr(..))")
public void around(ProceedingJoinPoint pjp) throws Throwable {
    pjp.proceed();
    System.out.println("Completed around" + pjp);
}

再次执行结果如下

Completed beforeexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
2018-04-19 16:12:36.276 INFO 1620 --- [nio-8080-exec-1] com.liangzhifeng.demo.entity.TestMain : create the string: this is first world
Completed aroundexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterReturning: execution(String com.liangzhifeng.demo.entity.TestMain.getStr())
get the string: null

可以看到@Before执行了,并且方法中的日志也打印了,只是返回结果却是null。很明显肯定时@Around方法影响了(至于原因后面再说),我们去掉@Around方法。
再次执行结果如下

Completed beforeexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
2018-04-19 16:24:05.239 INFO 6412 --- [nio-8080-exec-1] com.liangzhifeng.demo.entity.TestMain : create the string: this is first world
Completed afterexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterReturning: execution(String com.liangzhifeng.demo.entity.TestMain.getStr())
get the string: this is first world

可以看到@Before方法已经被执行,并且getStr()方法数据正确返回,使用AspectJ时需要谨慎使用@Around。我们再次修改@Around方法

@Around("execution(* com.liangzhifeng.demo.entity.TestMain.getStr(..))")
public Object around(ProceedingJoinPoint pjp) throws Throwable {
    System.out.println("Completed around before method is executed" + pjp);
    Object methodResult = pjp.proceed();
    System.out.println("Completed around after method is executed" + pjp);
    return methodResult;
}

执行结果如下

Completed around before method is executedexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed beforeexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
2018-04-19 16:49:00.046 INFO 9148 --- [nio-8080-exec-1] com.liangzhifeng.demo.entity.TestMain : create the string: this is first world
Completed around after method is executedexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterexecution(String com.liangzhifeng.demo.entity.TestMain.getStr())
Completed afterReturning: execution(String com.liangzhifeng.demo.entity.TestMain.getStr())
get the string: this is first world

由此我们可以大致得出AspectJ的注解的实现过程:

  1. 对于@Before,会在目标方法中加入@Before的逻辑体
public String getStr(){
    @Before logic     
}
  1. 对于@Around,会在目标方法执行前后加上对应的逻辑体。@Around真正执行方法的地方是ProceedingJoinPoint的processed()方法,如果不调用该方法那么,目标方法是不会被用的。
public @Around method's return type aroundLogicMethod(ProceedingJoinPoint pjp){
    @Around before processed() logic
    //public String getStr(){
    //     @Before logic     
    //}
    pjp.processed(); //等同于 getStr()
    @Around before processed() logic
    return Around method's return type;
}

最终getStr()的代码如下:

public String getStr(){ //该方法只是目标方法的一个代理
    return @Around aroundLogicMethod(pjp);
}

由于AspectJ代理了目标方法,返回的结果是@Around的方法的返回值,而我们刚开始是定义的@Around的返回值是void,所以我们之前调用getStr()的结果是null,如果不调用ProceedingJoinPoint.processed()方法,那么目标方法中的日志也是不会进行打印的,也就是说ProceedingJoinPoint.processed()包含了目标方法的调用,并且ProceedingJoinPoint.processed()返回的结果就是调用目标方法的返回结果。

AspectJ的原理:ApsectJ使用自己的代码编译器,直接修改Java class文件,在对应的切入点前后加入对应的的操作,并且会对目标切入点进行代理包装。
AspectJ大致逻辑模拟如下

public Object targetMethod() {
    Object result = aroundMethod();
    @AfterMethod();
    @AfterReturning
    return result;
}
public aroundMethodReturnType  aroundMethod(){
    pre around logic
    Object result = ProceedingJoinPoint.processed();
    after around logic
    return aroundMethodReturnType;
}

public class ProceedingJoinPoint{
    public Object processed(){
        @BeforeMethod();
        Object result = targetMethod();
        return result;
     }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容