91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何實現spring@aspect注解aop

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

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

@AspectJ 作為通過 Java 5 注釋注釋的普通的 Java 類,它指的是聲明 aspects 的一種風格。通過在你的基于架構的 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----");
  }
  
  //環繞通知
  @Around("logPointCut()")
  public Object around(ProceedingJoinPoint point) throws Throwable {
    long beginTime = System.currentTimeMillis();
    // 執行方法
    Object result = point.proceed();
    // 執行時長(毫秒)
    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>

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

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

向AI問一下細節

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

AI

兴和县| 惠州市| 通州市| 称多县| 休宁县| 淮阳县| 门源| 海林市| 芦山县| 延津县| 嘉禾县| 浦县| 句容市| 巴彦淖尔市| 铁力市| 元江| 贡觉县| 田东县| 科尔| 武宣县| 东乡| 信阳市| 白河县| 乐清市| 革吉县| 化隆| 工布江达县| 锦屏县| 白河县| 曲周县| 靖江市| 大同市| 阳曲县| 镇原县| 雅安市| 临颍县| 北碚区| 饶河县| 淮安市| 兴海县| 江门市|