欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Spring AOP的五種通知方式代碼實(shí)例

 更新時(shí)間:2019年12月12日 15:11:28   作者:微微亮  
這篇文章主要介紹了Spring AOP的五種通知方式代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

這篇文章主要介紹了Spring AOP的五種通知方式代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

AOP的五種通知方式:

前置通知:在我們執(zhí)行目標(biāo)方法之前運(yùn)行(@Before)

后置通知:在我們目標(biāo)方法運(yùn)行結(jié)束之后,不管有沒有異常(@After)

返回通知:在我們的目標(biāo)方法正常返回值后運(yùn)行(@AfterReturning)

異常通知:在我們的目標(biāo)方法出現(xiàn)異常后運(yùn)行(@AfterThrowing)

環(huán)繞通知:目標(biāo)方法的調(diào)用由環(huán)繞通知決定,即你可以決定是否調(diào)用目標(biāo)方法,joinPoint.procced()就是執(zhí)行目標(biāo)方法的代碼 。環(huán)繞通知可以控制返回對(duì)象(@Around)

一、導(dǎo)jar包

  • com.springsource.net.sf.cglib-2.2.0.jar
  • com.springsource.org.aopalliance-1.0.0.jar
  • com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
  • commons-logging-1.1.3.jar
  • spring-aop-4.0.0.RELEASE.jar
  • spring-aspects-4.0.0.RELEASE.jar
  • spring-beans-4.0.0.RELEASE.jar
  • spring-context-4.0.0.RELEASE.jar
  • spring-core-4.0.0.RELEASE.jar
  • spring-expression-4.0.0.RELEASE.jar
  • spring-jdbc-4.0.0.RELEASE.jar
  • spring-orm-4.0.0.RELEASE.jar
  • spring-tx-4.0.0.RELEASE.jar
  • spring-web-4.0.0.RELEASE.jar
  • spring-webmvc-4.0.0.RELEASE.jar

二、在類路徑下建applicationContext.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"
    xmlns:context="http://www.springframework.org/schema/context"

    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">
  <!--配置自動(dòng)掃描的包-->
  <context:component-scan base-package="com.atguigu.spring.aop"></context:component-scan>

  <!--配置自動(dòng)為匹配aspectJ 注解的Java類生成代理對(duì)象-->
  <aop:aspectj-autoproxy></aop:aspectj-autoproxy>

</beans>

三、接口

//接口
public interface ArithmeticCalculator {
  int add(int i, int j);
  int sub(int i, int j);
  int mul(int i, int j);
  int div(int i, int j);
}

四、實(shí)現(xiàn)類

package com.atguigu.spring.aop;

import org.springframework.stereotype.Component;

/**
 * @Author 謝軍帥
 * @Date2019/12/6 21:23
 * @Description
 */

//實(shí)現(xiàn)類
@Component("arithmeticCalculator")
public class ArithmeticCalculatorImpl implements ArithmeticCalculator {
  @Override
  public int add(int i, int j) {
    int relust = i+j;
    return relust;
  }

  @Override
  public int sub(int i, int j) {
    int relust = i-j;
    return relust;
  }

  @Override
  public int mul(int i, int j) {
    int relust = i*j;
    return relust;
  }

  @Override
  public int div(int i, int j) {
    int relust = i/j;
    return relust;
  }
}

五、定義切面類

package com.atguigu.spring.aop;

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

import java.util.Arrays;

/**
 * @Author 謝軍帥
 * @Date2019/12/11 11:17
 * @Description
 */
@Component
@Aspect
public class LoggingAspect {
  /**
   * 在每一個(gè)接口的實(shí)現(xiàn)類的每一個(gè)方法開始之前執(zhí)行一段代碼
   */

  @Before("execution(public int com.atguigu.spring.aop.ArithmeticCalculator.* (..))")
  public void beforeMethod(JoinPoint joinPoint){
    String methodName = joinPoint.getSignature().getName();
    Object[] args = joinPoint.getArgs();

    System.out.println("The method "+methodName+" begins with "+ Arrays.asList(args));
  }

  @After("execution(public int com.atguigu.spring.aop.ArithmeticCalculator.* (..))")
  public void afterMethod(JoinPoint joinPoint){
    String methodName = joinPoint.getSignature().getName();

    System.out.println("The method "+methodName +" end......");
  }


  /**
   * 返回通知
   * 在方法正常結(jié)束后執(zhí)行的代碼
   * 返回通知是可以訪問方法的返回值的!
   * @param joinPoint*/
   
  @AfterReturning(value = "execution(public int com.atguigu.spring.aop.ArithmeticCalculator.* (..))",
          returning = "result")
  public void afterReturning(JoinPoint joinPoint,Object result){
    String methodName = joinPoint.getSignature().getName();
    System.out.println("The method "+methodName +" end......result:"+result);
  }


  /**
   * 在目標(biāo)方法出現(xiàn)異常時(shí)會(huì)執(zhí)行的代碼
   * 可以訪問到異常對(duì)象,且可以指定在出現(xiàn)特定異常時(shí)在執(zhí)行通知代碼
   * @param joinPoint
   * @param ex*/
   
  @AfterThrowing(value = "execution(public int com.atguigu.spring.aop.ArithmeticCalculator.* (..))", throwing = "ex")
  public void afterThrowing(JoinPoint joinPoint, Exception ex){
    String methodName = joinPoint.getSignature().getName();
    System.out.println("The method "+methodName +"occurs exception :" +ex);
  }

  /**
   * 環(huán)繞通知需要攜帶 ProceedingJoinPoint 類型的參數(shù)
   * 環(huán)繞通知類似于動(dòng)態(tài)代理的全過程:ProceedingJoinPoint 類型的參數(shù)可以決定是否執(zhí)行目標(biāo)方法。
   * 且環(huán)繞通知必須有返回值,返回值即為目標(biāo)方法的返回值
   * @param proceedingJoinPoint
   */
  /*@Around("execution(public int com.atguigu.spring.aop.ArithmeticCalculator.* (..))")
  public Object aroundMethod(ProceedingJoinPoint proceedingJoinPoint){

    Object result = null;
    String methodName = proceedingJoinPoint.getSignature().getName();

    try {
      //前置通知
      System.out.println("The method "+methodName+" begins with "+Arrays.asList(proceedingJoinPoint.getArgs()));
      //執(zhí)行目標(biāo)方法
      result = proceedingJoinPoint.proceed();

      //返回通知
      System.out.println("The method ends with "+result);
    } catch (Throwable e) {
      //異常通知
      System.out.println("The method occurs exception:"+e);

      throw new RuntimeException(e);
    }

    //后置通知
    System.out.println("The method "+methodName+" ends........");

    return result;
  }*/
}

六、測試

public class Test_aop {
  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
    ArithmeticCalculator arithmeticCalculator = (ArithmeticCalculator) context.getBean("arithmeticCalculator");
    System.out.println(arithmeticCalculator.getClass().getName());
    int result = arithmeticCalculator.add(1,2);
    System.out.println("result:"+result);
    result = arithmeticCalculator.div(200,0);
    System.out.println("result:"+result);
  }
}

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Java利用自定義注解、反射實(shí)現(xiàn)簡單BaseDao實(shí)例

    Java利用自定義注解、反射實(shí)現(xiàn)簡單BaseDao實(shí)例

    下面小編就為大家?guī)硪黄狫ava利用自定義注解、反射實(shí)現(xiàn)簡單BaseDao實(shí)例。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-08-08
  • 利用反射獲取Java類中的靜態(tài)變量名及變量值的簡單實(shí)例

    利用反射獲取Java類中的靜態(tài)變量名及變量值的簡單實(shí)例

    下面小編就為大家?guī)硪黄梅瓷浍@取Java類中的靜態(tài)變量名及變量值的簡單實(shí)例。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2016-12-12
  • Springcloud整合stream,rabbitmq實(shí)現(xiàn)消息驅(qū)動(dòng)功能

    Springcloud整合stream,rabbitmq實(shí)現(xiàn)消息驅(qū)動(dòng)功能

    官方定義SpringCloud?Stream?是一個(gè)構(gòu)建消息驅(qū)動(dòng)微服務(wù)的框架。我們只需要搞清楚如何與Spring?Cloud?Stream?交互就可以方便使用消息驅(qū)動(dòng)的方式。本文將通過Springcloud整合stream,rabbitmq實(shí)現(xiàn)消息驅(qū)動(dòng)功能,需要的可以參考一下
    2022-02-02
  • Spring?Aop常見注解與執(zhí)行順序詳解

    Spring?Aop常見注解與執(zhí)行順序詳解

    這篇文章主要給大家介紹了關(guān)于Spring?Aop常見注解與執(zhí)行順序的相關(guān)資料,文中通過圖文以及實(shí)例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2022-02-02
  • Java sm3加密算法的實(shí)現(xiàn)

    Java sm3加密算法的實(shí)現(xiàn)

    這篇文章主要介紹了Java sm3加密算法的實(shí)現(xiàn),幫助大家更好的利用Java進(jìn)行加密,感興趣的朋友可以了解下
    2020-10-10
  • SPFA算法的實(shí)現(xiàn)原理及其應(yīng)用詳解

    SPFA算法的實(shí)現(xiàn)原理及其應(yīng)用詳解

    SPFA算法,全稱為Shortest?Path?Faster?Algorithm,是求解單源最短路徑問題的一種常用算法,本文就來聊聊它的實(shí)現(xiàn)原理與簡單應(yīng)用吧
    2023-05-05
  • 如何在springboot項(xiàng)目中自定義404頁面

    如何在springboot項(xiàng)目中自定義404頁面

    今天點(diǎn)擊菜單的時(shí)候不小心點(diǎn)開了一個(gè)不存在的頁面,然后看到瀏覽器給的一個(gè)默認(rèn)的404頁面,這篇文章主要介紹了如何在springboot項(xiàng)目中自定義404頁面,需要的朋友可以參考下
    2024-05-05
  • Maven?Repository?使用方法

    Maven?Repository?使用方法

    對(duì)于Java開發(fā)者來說,Maven?Repository是個(gè)必須掌握的網(wǎng)站,它可以讓開發(fā)者更加方便地管理和維護(hù)?Java?項(xiàng)目的依賴項(xiàng),同時(shí)簡化了項(xiàng)目開發(fā)的過程,這篇文章主要介紹了Maven?Repository?使用方法,需要的朋友可以參考下
    2024-02-02
  • Java實(shí)現(xiàn)簡單汽車租賃系統(tǒng)

    Java實(shí)現(xiàn)簡單汽車租賃系統(tǒng)

    這篇文章主要為大家詳細(xì)介紹了Java實(shí)現(xiàn)簡單汽車租賃系統(tǒng),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-01-01
  • 徹底理解Java 中的ThreadLocal

    徹底理解Java 中的ThreadLocal

    這篇文章主要介紹了徹底理解Java 中的ThreadLocal的相關(guān)資料,需要的朋友可以參考下
    2017-07-07

最新評(píng)論