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

Spring-AOP @AspectJ進(jìn)階之如何綁定代理對象

 更新時間:2021年07月19日 14:31:15   作者:小小工匠  
這篇文章主要介紹了Spring-AOP @AspectJ進(jìn)階之如何綁定代理對象的操作,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教

概述

使用this()或target()可綁定被代理對象實(shí)例,在通過類實(shí)例名綁定對象時,還依然具有原來連接點(diǎn)匹配的功能,只不過類名是通過增強(qiáng)方法中同名入?yún)⒌念愋烷g接決定罷了。

這里我們通過this()來了解對象綁定的用法:

實(shí)例

代碼已托管到Github—> https://github.com/yangshangwei/SpringMaster

這里寫圖片描述

業(yè)務(wù)類

package com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj;
import org.springframework.stereotype.Component;
/**
 * 
 * 
 * @ClassName: BussinessLogicService
 * 
 * @Description: @Component標(biāo)注的bean
 * 
 * @author: Mr.Yang
 * 
 * @date: 2017年9月12日 下午12:11:28
 */
@Component
public class BussinessLogicService {
	public void doLogic() {
		System.out.println("BussinessLogicService doLogic executed ");
	}
}

切面

package com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
/**
 * 
 * 
 * @ClassName: BindProxyObjAspect
 * 
 * @Description: 綁定代理對象
 *               使用this()或target()可綁定被代理對象實(shí)例,在通過類實(shí)例名綁定對象時,還依然具有原來連接點(diǎn)匹配的功能,
 *               只不過類名是通過增強(qiáng)方法中同名入?yún)⒌念愋烷g接決定罷了
 * 
 * @author: Mr.Yang
 * 
 * @date: 2017年9月12日 下午12:04:44
 */
@Aspect
public class BindProxyObjAspect {
	// (1)處通過②處查找出waiter對應(yīng)的類型為BussinessLogicService,因而切點(diǎn)表達(dá)式
	// 為this(bussinessLogicService),當(dāng)增強(qiáng)方法織入目標(biāo)連接點(diǎn)時,增強(qiáng)方法通過bussinessLogicService
	// 入?yún)⒖梢砸玫酱韺ο蟮膶?shí)例。
	@Before("this(bussinessLogicService)")
	public void bindProxyObj(BussinessLogicService bussinessLogicService) { // (2)
		System.out.println("----bindProxyObj()----");
		System.out.println(bussinessLogicService.getClass().getName());
		System.out.println("----bindProxyObj()----");
	}
}

①處的切點(diǎn)表達(dá)式首先按類變量名查找②處增強(qiáng)方法的入?yún)⒘斜?,進(jìn)而獲取類變量名對應(yīng)的類為

com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj.BussinessLogicService

這樣就知道了切點(diǎn)的定義為

this(com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj.BussinessLogicService)

即所有代理對象為BussinessLogicService類的所有方法匹配該切點(diǎn)。

②處的增強(qiáng)方法通過bussinessLogicService入?yún)⒔壎繕?biāo)對象。

可見BussinessLogicService的所有方法匹配①處的切點(diǎn)

配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	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">
<!-- (1)聲明Context命名空間以及Schema文件   (2)掃描類包以及應(yīng)用注解定義的bean -->
<context:component-scan base-package="com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj"/>
<!-- 基于@AspectJ切面的驅(qū)動器 -->
<aop:aspectj-autoproxy proxy-target-class="true"/>
 
<!-- 使用了@AspectJ注解的切面類 -->
<bean class="com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj.BindProxyObjAspect"/>
</beans>

測試類

package com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BindProxyObjAspectTest {
 @Test
 public void test() {
  ApplicationContext ctx = new ClassPathXmlApplicationContext(
    "classpath:com/xgj/aop/spring/advisor/aspectJAdvance/bindProxyObj/conf-bindProxyObj.xml");
  BussinessLogicService bussinessLogicService = ctx.getBean(
    "bussinessLogicService", BussinessLogicService.class);
  bussinessLogicService.doLogic();
 }
}

運(yùn)行結(jié)果

2017-09-12 13:54:41,463  INFO [main] (AbstractApplicationContext.java:583) - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@292898f5: startup date [Tue Sep 12 13:54:41 BOT 2017]; root of context hierarchy
2017-09-12 13:54:41,557  INFO [main] (XmlBeanDefinitionReader.java:317) - Loading XML bean definitions from class path resource [com/xgj/aop/spring/advisor/aspectJAdvance/bindProxyObj/conf-bindProxyObj.xml]
----bindProxyObj()----
com.xgj.aop.spring.advisor.aspectJAdvance.bindProxyObj.BussinessLogicService$$EnhancerBySpringCGLIB$$472f5f0d
----bindProxyObj()----
BussinessLogicService doLogic executed

按相似的方法使用target()進(jìn)行綁定。

以上為個人經(jīng)驗(yàn),希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • 利用Mybatis向PostgreSQL中插入并查詢JSON字段

    利用Mybatis向PostgreSQL中插入并查詢JSON字段

    這篇文章主要介紹了利用Mybatis向PostgreSQL中插入并查詢JSON字段,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價值,需要的小伙伴可以參考一下
    2022-07-07
  • MyBatis-Plus 使用枚舉自動關(guān)聯(lián)注入

    MyBatis-Plus 使用枚舉自動關(guān)聯(lián)注入

    本文主要介紹了MyBatis-Plus 使用枚舉自動關(guān)聯(lián)注入,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-06-06
  • Java實(shí)現(xiàn)根據(jù)前端所要格式返回樹形3級層級數(shù)據(jù)

    Java實(shí)現(xiàn)根據(jù)前端所要格式返回樹形3級層級數(shù)據(jù)

    這篇文章主要為大家詳細(xì)介紹了Java如何實(shí)現(xiàn)根據(jù)前端所要格式返回樹形3級層級數(shù)據(jù),文中的示例代碼講解詳細(xì),有需要的小伙伴可以了解下
    2024-02-02
  • 學(xué)生視角看Java 面向?qū)ο蟮睦^承本質(zhì)

    學(xué)生視角看Java 面向?qū)ο蟮睦^承本質(zhì)

    繼承是java面向?qū)ο缶幊碳夹g(shù)的一塊基石,因?yàn)樗试S創(chuàng)建分等級層次的類。繼承就是子類繼承父類的特征和行為,使得子類對象(實(shí)例)具有父類的實(shí)例域和方法,或子類從父類繼承方法,使得子類具有父類相同的行為
    2022-03-03
  • Mybatis操作多數(shù)據(jù)源的實(shí)現(xiàn)

    Mybatis操作多數(shù)據(jù)源的實(shí)現(xiàn)

    本文主要介紹了Mybatis操作多數(shù)據(jù)源,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-05-05
  • java檢測redis是否可用的方法示例

    java檢測redis是否可用的方法示例

    這篇文章主要給大家介紹了關(guān)于java檢測redis是否可用的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用java具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-08-08
  • IDEA插件開發(fā)之環(huán)境搭建過程圖文詳解

    IDEA插件開發(fā)之環(huán)境搭建過程圖文詳解

    這篇文章主要介紹了IDEA插件開發(fā)之環(huán)境搭建過程,本文通過圖文并茂實(shí)例代碼相結(jié)合給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-05-05
  • Java spring webmvc如何實(shí)現(xiàn)控制反轉(zhuǎn)

    Java spring webmvc如何實(shí)現(xiàn)控制反轉(zhuǎn)

    這篇文章主要介紹了Java spring webmvc如何實(shí)現(xiàn)控制反轉(zhuǎn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2020-08-08
  • Java多線程中的concurrent簡析

    Java多線程中的concurrent簡析

    這篇文章主要介紹了Java多線程中的concurrent簡析,java.util.concurrent包提供了很多有用的類,方便我們進(jìn)行并發(fā)程序的開發(fā),本文將會挑選其中常用的一些類來進(jìn)行大概的說明,需要的朋友可以參考下
    2023-09-09

最新評論