溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現(xiàn)spring@aspect注解aop

發(fā)布時間:2021-05-24 11:17:40 來源:億速云 閱讀:166 作者:小新 欄目:編程語言

這篇文章主要介紹了如何實現(xiàn)spring@aspect注解aop,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

@AspectJ 作為通過 Java 5 注釋注釋的普通的 Java 類,它指的是聲明 aspects 的一種風格。通過在你的基于架構(gòu)的 XML 配置文件中包含以下元素,@AspectJ 支持是可用的。

第一步:編寫切面類

package com.dascom.hawk.app.web.tool;

import org.aspectj.lang.JoinPoint;
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;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class AnnotationAspectJ {

  //定義切面("execution(* com.dascom.common.aop.*.*(..)))
  //當前配置的意思是所有添加了SuiteMessage的注解的方法作為切點
  @Pointcut("@annotation(com.dascom.common.annotation.SuiteMessage)")
  public void logPointCut() {
  }
  
  //前置通知
  @Before("logPointCut()")
  public void before(JoinPoint point) {
    String calssName = point.getTarget().getClass().getName();
    String method = point.getSignature().getName();
    System.out.println(calssName + " : " + method);
  }
  
  //后置通知
  @After("logPointCut()")
  public void after(JoinPoint point) {
    String method = point.getSignature().getName();
    System.out.println(method + ": end----");
  }
  
  //環(huán)繞通知
  @Around("logPointCut()")
  public Object around(ProceedingJoinPoint point) throws Throwable {
    long beginTime = System.currentTimeMillis();
    // 執(zhí)行方法
    Object result = point.proceed();
    // 執(zhí)行時長(毫秒)
    long time = System.currentTimeMillis() - beginTime;
    //異步保存日志
    System.out.println(time);
    return result;
  }
}

第二步:在spring的配置文件中添加注解掃描

<?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.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  <!-- 配置自動掃描的包 -->
  <context:component-scan base-package="com.dascom.hawk.app.web.tool"></context:component-scan>
  <!-- 自動為切面方法中匹配的方法所在的類生成代理對象。
    proxy-target-class="true" 這個的作用是struts的控制類都基礎的actionSupport,必須添加這個,不然會報錯
   -->
  <aop:aspectj-autoproxy proxy-target-class="true" />
  
</beans>

第三步:搞定。爽歪歪~~~

感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何實現(xiàn)spring@aspect注解aop”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI