Spring基於AspectJ的AOP開發案例解析

  • 使用AspectJ實現AOP
  • 註解方式
  • XML方式

AspectJ簡介

  • AspectJ是一個基於Java語言的AOP框架
  • Spring2.0以後新增瞭對AspectJ切點表達式支持
  • @AspectJ是AspectJ1.5新增的功能,通過JDK5註解技術,允許直接在Bean類中定義切面
  • 新版本Spring框架,建議使用AspectJ方式來開發AOP
  • 使用AspectJ需要導入Spring AOP和AspectJ相關jar包
  • Spring-aop
  • springsource.org.aopalliance
  • spring-aspects
  • springsource.org.aspectj.weaver

註解開發

環境準備

  • 應入相關的
  • jar包junit,javax.annotation-api,spring-core,spring-beans,spring-context,spring-expression,aopalliance,spring-aop(Spring基礎包)
  • aspectjweaver,spring-aspects(AspectJ使用的)
  • spring-test(測試使用)
  • XML引入相應配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- bean definitions here -->
        <!--需要單獨引入-->
        <aop:aspectj-autoproxy/>
</beans>

不同的通知類型

  • @Before前置通知,相當於BeforeAdvice
  • @AfterReturning後置通知,相當於AfterReturningAdvice
  • @Around環繞通知,相當於MethodInterceptor(可以阻止方法的進行,功能最強。列:事務管理)
  • @AfterThrowing異常拋出通知,相當於ThrowAdvice
  • @After最終final通知,不管是否異常,該通知都會執行
  • @DeclarwParents引介通知,相當於IntroductionInterceptor(不要求掌握)

最通知中通過value屬性定義切點

  • 通過execution函數,可以定義切點的方法切入
  • 語法: –execution(<訪問修飾符>?<返回類型><方法名>(<參數>)<異常>)(訪問修飾符可以省略)
  • 列如

–匹配所有類public方法 execution(publice * * (..))—第一個*:任意返回值 第二個*:任意名稱 (..):任意參數 相當於所有以public開頭的方法加瞭一個前置通知的話都會執行 –匹配指定包下所有類方法 execution(* top.odliken.demo.(..)) 不包含子包 .:包 –execution(* top.odliken.demo..(..)) ..便是包、子酸包下所有類 –匹配指定類所有方法 execution( top.odlien.demo.UserService.(..)) 第一個*:任意返回值 UserService.:UserService類下面的所有方法 –匹配實現特定接口所有方法 execution( top.odliken.demo.GenericDao+.(..)) +:子類 .:方法名 –匹配所有save開頭的方法 execution(* save*(..))

入門案列

============XML==========
<!--配置目標類=================-->
<bean id="customerDao" class="com.imooc.aspectJ.demo2.CustomerDaoImpl"/>
<!--配置切面類-->
<bean id="myAspectXml" class="com.imooc.aspectJ.demo2.MyAspectXml"/>
===========ProductDao===========
public class ProductDao {
    public void save() {
        System.out.println("保存商品.....");
    }
    public void findOne() {
        System.out.println("查找一個商品.....");
    }
    public void findAll() {
        System.out.println("查找所有商品.....");
    }
    public void update() {
        System.out.println("修改商品.....");
    }
    public void delete() {
        System.out.println("刪除商品.....");
    }
}
===========MyAspectAnno===========
@Aspect
public class MyAspectAnno {
    @Before(value = "execution(* top.odliken.aspectJ.demo1.ProductDao.save(..))")
    public void before(){
        System.out.println("=========前置通知=========");
    }
}
===========Springdemo1===========
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:afterglow.xml")
public class Springdemo1 {
    @Resource(name = "productDao")
    private ProductDao productDao;
    @Test
    public void demo1(){
        productDao.save();
        productDao.findOne();
        productDao.findAll();
        productDao.update();
        productDao.delete();
    }
}

@Before前置通知

  • 可以在方法中傳入JoinPoint對象,用來獲取切點信息
public void before(JoinPoint joinPoint){
    System.out.println("=========前置通知========="+joinPoint);
}

@AfterReturning後置通知

  • 通過returning屬性可以定義返回值,作為參數
@AfterReturning(value = "execution(* top.odliken.aspectJ.demo1.ProductDao.update(..))",returning = "result")
public void afterReturing(Object result){
    System.out.println("==========後置通知=========="+result);
}

@Around環繞通知

  • Around方法的返回值就是目標代理方法執行返回值
  • 參數ProceedingJoinPoint 可以調用攔截目標方法執行
  • 如果不調用 ProceedingJoinPoint的 proceed方法,那麼目標方法就背攔截瞭
@Around(value = "execution(* top.odliken.aspectJ.demo1.ProductDao.delete(..)))")
public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
    System.out.println("環繞通知======前");
    Object obj = joinPoint.proceed();//執行目標方法 不調用就不執行
    System.out.println("環繞通知======後");
    return obj;
}

@AfterThrowing 異常拋出通知

  • 通過設置throwing屬性,可以設置發生異常對象參數
@AfterThrowing(value = "execution(* top.odliken.aspectJ.demo1.ProductDao.findOne(..)))",throwing = "e")
public void  afterThrowing(Throwable e){
    System.out.println("==========異常通知=========="+e.getMessage());
}

@After 最終通知

  • 無論是否出現異常,最終通知總是會被執行的。就像Java異常中的 finall塊一樣
@After(value = "execution(* top.odliken.aspectJ.demo1.ProductDao.findAll(..))")
public void after(){
    System.out.println("==========最終通知==========");
}

通過@Pointcut為切點命名

  • 在每個通知內定義切點,會造成工作量大,不易維護,對於重復的切點,可以使用@Pointcut進行定義
  • 切點方法:private void 無參方法,方法名為切點名
  • 當通知多個切點是,可以使用||連接
@Before(value = "myPointcut1()")
public void before(JoinPoint joinPoint){
    System.out.println("=========前置通知========="+joinPoint);
}
@Pointcut(value = "execution(* top.odliken.aspectJ.demo1.ProductDao.save(..))")
private void myPointcut1(){}

AspectJ的XML方式的AOP開發

==========CustomerDao==========
public interface CustomerDao {
    public void save();
    public String update();
    public void delete();
    public void findOne();
    public void findAll();
}
==========CustomerDaoImpl==========
public class CustomerDaoImpl implements CustomerDao {
    public void save() {
        System.out.println("保存客戶...");
    }
    public String update() {
        System.out.println("修改客戶...");
        return "spring";
    }
    public void delete() {
        System.out.println("刪除客戶...");
    }
    public void findOne() {
        System.out.println("查詢一個客戶...");
//       int a = 1/ 0;
    }
    public void findAll() {
        System.out.println("查詢多個客戶...");
//        int b = 1/0;
    }
}
==========MyAspectXml==========
public class MyAspectXml {
    // 前置通知
    public void before(JoinPoint joinPoint) {
        System.out.println("XML方式的前置通知==============" + joinPoint);
    }
    // 後置通知
    public void afterReturing(Object result) {
        System.out.println("XML方式的後置通知==============" + result);
    }
    // 環繞通知
    public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("XML方式的環繞前通知==============");
        Object obj = joinPoint.proceed();
        System.out.println("XML方式的環繞後通知==============");
        return obj;
    }
    // 異常拋出通知
    public void afterThrowing(Throwable e) {
        System.out.println("XML方式的異常拋出通知=============" + e.getMessage());
    }
    // 最終通知
    public void after() {
        System.out.println("XML方式的最終通知=================");
    }
}
==========SpringDemo2==========
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(value="classpath:applicationContext2.xml")
public class SpringDemo2 {
    @Resource(name="customerDao")
    private CustomerDao customerDao;
    @Test
    public void demo1(){
        customerDao.save();
        customerDao.update();
        customerDao.delete();
        customerDao.findOne();
        customerDao.findAll();
    }
}
==========XML==========
<!--XML的配置方式完成AOP的開發===============-->
<!--配置目標類=================-->
<bean id="customerDao" class="com.imooc.aspectJ.demo2.CustomerDaoImpl"/>
<!--配置切面類-->
<bean id="myAspectXml" class="com.imooc.aspectJ.demo2.MyAspectXml"/>
<!--aop的相關配置=================-->
<aop:config>
    <!--配置切入點-->
    <aop:pointcut id="pointcut1" expression="execution(* com.imooc.aspectJ.demo2.CustomerDao.save(..))"/>
    <aop:pointcut id="pointcut2" expression="execution(* com.imooc.aspectJ.demo2.CustomerDao.update(..))"/>
    <aop:pointcut id="pointcut3" expression="execution(* com.imooc.aspectJ.demo2.CustomerDao.delete(..))"/>
    <aop:pointcut id="pointcut4" expression="execution(* com.imooc.aspectJ.demo2.CustomerDao.findOne(..))"/>
    <aop:pointcut id="pointcut5" expression="execution(* com.imooc.aspectJ.demo2.CustomerDao.findAll(..))"/>
    <!--配置AOP的切面-->
    <aop:aspect ref="myAspectXml">
        <!--配置前置通知-->
        <aop:before method="before" pointcut-ref="pointcut1"/>
        <!--配置後置通知-->
        <aop:after-returning method="afterReturing" pointcut-ref="pointcut2" returning="result"/>
        <!--配置環繞通知-->
        <aop:around method="around" pointcut-ref="pointcut3"/>
        <!--配置異常拋出通知-->
        <aop:after-throwing method="afterThrowing" pointcut-ref="pointcut4" throwing="e"/>
        <!--配置最終通知-->
        <aop:after method="after" pointcut-ref="pointcut5"/>
    </aop:aspect>
</aop:config>

到此這篇關於Spring的基於AspectJ的AOP開發的文章就介紹到這瞭,更多相關Spring基於AspectJ的AOP開發內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: