JavaEE 学习专题程序员

Spring框架 -- AOP编程

2017-10-09  本文已影响85人  Mr_欢先生

一.Aop概述

Aspect Object Programming 面向切面编程,采取横向抽取机制,取代的传统的纵向继承体系重复性代码

连接点(Join point)
切入点(Pointcut)
通知/增强(Advice)
切面(Aspect)

二.@AspectJ的aop操作(配置文件实现)

execution(<访问修饰符>?<返回类型><方法名>(<参数>)<异常>)
1.execution(* com.huan.web.book_aop.Book.add(..))
2.execution(* com.huan.web.book_aop.Book.*(...))
3.execution(* *.*(...))
4.execution(* book*(...))匹配所有book开头的方法

<!--AOP-->
    <!--配置对象-->
    <bean id = "book" class="com.huan.web.book_aop.Book"></bean>
    <bean id = "myBook" class="com.huan.web.book_aop.MyBook"></bean>
    <!--配置aop操作-->
    <aop:config>
        <!--配置切入点-->
        <aop:pointcut id="pointcut1" expression="execution(* com.huan.web.book_aop.Book.add(..))"/>
        <!--配置切面
        把增强用到方法上面
        -->
        <aop:aspect ref="myBook">
            <!--配置增强类型
            method:增强类里面使用哪个方法作为前置
            -->
            <aop:before method="beforeBook" pointcut-ref="pointcut1"/>
            <!--后置增强-->
            <aop:after method="afterBook" pointcut-ref="pointcut1"/>
            <!--环绕执行-->
            <aop:around method="aroundBook" pointcut-ref="pointcut1"/>
        </aop:aspect>
    </aop:config>
package com.huan.web.book_aop;

public class Book {
    public void add (){
        System.out.println("add---------");
    }
}
package com.huan.web.book_aop;

public class MyBook {
    public void beforeBook(){
        System.out.println("前置增强------------");
    }
}
package com.huan.web.book_aop;

import org.aspectj.lang.ProceedingJoinPoint;

public class MyBook {
    public void beforeBook(){
        System.out.println("前置增强------------");
    }
    public void afterBook(){
        System.out.println("后置增强-----------");
    }

//    环绕增强
    public void aroundBook(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
//        方法前
        System.out.println("环绕前------");
//        执行方法
        proceedingJoinPoint.proceed();
//        方法后
        System.out.println("环绕后------");
    }
}

三.@AspectJ的aop操作(注解实现)

<!--开启aop扫描-->
    <aop:aspectj-autoproxy/>
    <!--AOP-->
    <!--创建对象-->
    <bean id="book" class="com.huan.web.book_aop.Book"/>
    <bean id="myBook" class="com.huan.web.book_aop.MyBook"/>
package com.huan.web.book_aop;

public class Book {
    public void add (){
        System.out.println("add---------");
    }
}

MyBook.java

package com.huan.web.book_aop;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class MyBook {

    @Before(value = "execution(* com.huan.web.book_aop.Book.*(..))")
    public void beforeBook(){
        System.out.println("前置增强------------");
    }
    @After(value = "execution(* com.huan.web.book_aop.Book.*(..))")
    public void afterBook(){
        System.out.println("后置增强-----------");
    }

//    环绕增强
    @Around(value = "execution(* com.huan.web.book_aop.Book.*(..))")
    public void aroundBook(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
//        方法前
        System.out.println("环绕前------");
//        执行方法
        proceedingJoinPoint.proceed();
//        方法后
        System.out.println("环绕后------");
    }
}
package com.huan.web.book_aop;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Controller;

@Controller
public class TestDemo {

    @Test
    public void test(){
        ApplicationContext context = new ClassPathXmlApplicationContext("spring/spring-aop.xml");
        Book book = (Book)context.getBean("book");
        book.add();
    }
}
注解实现
上一篇下一篇

猜你喜欢

热点阅读