最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

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

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

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)繞通知可以控制返回對象(@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">
  <!--配置自動掃描的包-->
  <context:component-scan base-package="com.atguigu.spring.aop"></context:component-scan>

  <!--配置自動為匹配aspectJ 注解的Java類生成代理對象-->
  <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 {
  /**
   * 在每一個接口的實(shí)現(xiàn)類的每一個方法開始之前執(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)異常時會執(zhí)行的代碼
   * 可以訪問到異常對象,且可以指定在出現(xiàn)特定異常時在執(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)繞通知類似于動態(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)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

鸡西市| 武胜县| 濮阳县| 镇远县| 黎平县| 四平市| 陈巴尔虎旗| 卢湾区| 阿拉善左旗| 昌黎县| 望奎县| 巍山| 清水县| 镇安县| 舒城县| 田林县| 金阳县| 宁津县| 辽阳县| 南岸区| 彭水| 开封县| 锡林浩特市| 泾阳县| 石泉县| 基隆市| 即墨市| 延庆县| 嘉义市| 澄城县| 彭州市| 枝江市| 葫芦岛市| 黎平县| 高唐县| 安义县| 错那县| 和平县| 普宁市| 平阳县| 句容市|