溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用Spring怎么實(shí)現(xiàn)動(dòng)態(tài)代理

發(fā)布時(shí)間:2021-04-19 17:27:54 來(lái)源:億速云 閱讀:144 作者:Leah 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)使用Spring怎么實(shí)現(xiàn)動(dòng)態(tài)代理,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

基于jdk實(shí)現(xiàn)的動(dòng)態(tài)代理

package com.proxy.daili;
import com.proxy.daili.service.IModelMath;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.Arrays;
/**
 * 動(dòng)態(tài)代理模式類
 * 第一種代理模式:Jdk動(dòng)態(tài)代理
 *  注意:實(shí)現(xiàn)InvocationHandler這個(gè)接口
 *
 *  基于接口的
 */
public class JdkDynamicProxy implements InvocationHandler {
 //定義需要代理的接口
 protected IModelMath iModelMath;

 //將需要代理的接口作為參數(shù)傳入到動(dòng)態(tài)代理設(shè)計(jì)模式類中
 public JdkDynamicProxy(IModelMath iModelMath){
  this.iModelMath = iModelMath;
 }
 /**
  * 生成代理對(duì)象
  * 使用java.lang.reflect.Proxy這個(gè)類調(diào)用newProxyInstance方法
  * 返回 動(dòng)態(tài)代理類對(duì)象
  */
 public IModelMath iModelMathmethod(){
  IModelMath iModelMathProxy = (IModelMath) Proxy.newProxyInstance(iModelMath.getClass().getClassLoader(),
    iModelMath.getClass().getInterfaces(),
    this);
  return iModelMathProxy;
 }
 /**
  * 開始做代理的操作
  * Object proxy 代理對(duì)象的引用
  * Method method 當(dāng)前執(zhí)行的方法
  * Object[] args 當(dāng)前執(zhí)行方法的參數(shù)
  * 返回 與被代理對(duì)象返回的值相同
  */
 @Override
 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  System.out.println("你調(diào)用的方法為:"+method.getName());
  System.out.println("你調(diào)用的方法參數(shù)有:"+ Arrays.toString(args));
  Object invoke = method.invoke(iModelMath, args);
  System.out.println("方法的返回?cái)?shù)據(jù):"+invoke);
  return invoke;
 }
}
package com.proxy.test;
import com.proxy.daili.service.IModelMath;
import com.proxy.daili.JdkDynamicProxy;
import com.proxy.daili.service.ModelMath;
import org.junit.Test;
public class TestJDKDynamicProxy {
 /**
  * 使用jdk方式的動(dòng)態(tài)代理
  * 測(cè)試
  */
 @Test
 public void testJdkDynamicProxy(){
  //需要被代理的動(dòng)態(tài)對(duì)象
  IModelMath imm = new ModelMath();
  //代理對(duì)象
  IModelMath math = new JdkDynamicProxy(imm).iModelMathmethod();
  //通過(guò)代理對(duì)象做操作
  int addition = math.addition(10, 2);
  int subtraction = math.subtraction(20, 19);
  System.out.println("實(shí)際方法的數(shù)據(jù)為:"+addition);
  System.out.println("實(shí)際方法的數(shù)據(jù)為:"+subtraction);
 }
}

基于gcLib實(shí)現(xiàn)的動(dòng)態(tài)代理

package com.proxy.daili;
import com.proxy.daili.service.IModelMath;
import com.proxy.daili.service.ModelMath;
import net.sf.cglib.proxy.Enhancer;
import net.sf.cglib.proxy.MethodInterceptor;
import net.sf.cglib.proxy.MethodProxy;
import java.lang.reflect.Method;
import java.util.Arrays;
/**
 * cglib動(dòng)態(tài)代理設(shè)計(jì)類
 * 前提必須要先導(dǎo)入 cglib 包
 * 基于 實(shí)現(xiàn)類的
 */
public class CglibDynamicProxy implements MethodInterceptor {
 //定義被代理的實(shí)現(xiàn)類(注意這 是實(shí)現(xiàn)類,不是接口)
 private ModelMath modelMath;

 //將被代理的對(duì)象作為參數(shù) 傳入到 cglib動(dòng)態(tài)代理設(shè)計(jì)類中
 public CglibDynamicProxy(ModelMath modelMath){
  this.modelMath = modelMath;
 }
 //生成代理對(duì)象
 public ModelMath getProxyModelMath(){
  //new 一個(gè)Enhancer對(duì)象
  Enhancer enhancer = new Enhancer();
  //指定他的父類(注意這 是實(shí)現(xiàn)類,不是接口)
  enhancer.setSuperclass(ModelMath.class);
  //指定真正做事情的回調(diào)方法
  enhancer.setCallback(this);
  //生成代理類對(duì)象
  ModelMath o = (ModelMath) enhancer.create();
  //返回
  return o;
 }
 /**
  * 執(zhí)行被代理的任何方法,都會(huì)經(jīng)過(guò)這個(gè)方法
  * @param o
  * @param method
  * @param objects
  * @param methodProxy
  * @return
  * @throws Throwable
  */
 @Override
 public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
  System.out.println("通過(guò)gclib 動(dòng)態(tài)代理調(diào)用的方法名為:"+method.getName());
  System.out.println("通過(guò)gclib 動(dòng)態(tài)代理調(diào)用的方法的參數(shù)包含:"+ Arrays.toString(objects));
  Object invoke = method.invoke(modelMath, objects);
  System.out.println("通過(guò)gclib 動(dòng)態(tài)代理調(diào)用的方法返回的數(shù)據(jù):"+ invoke);
  return invoke;
 }
}
package com.proxy.test;

import com.proxy.daili.CglibDynamicProxy;
import com.proxy.daili.service.ModelMath;
import org.junit.Test;

public class TestCgLibDynamicProxy {
 /**
  * 使用gclib方式的動(dòng)態(tài)代理
  * 測(cè)試
  */
 @Test
 public void testCglibDynamicProxy(){
  ModelMath modelMath = new ModelMath();
  ModelMath proxyModelMath = new CglibDynamicProxy(modelMath).getProxyModelMath();
  int subtraction = proxyModelMath.subtraction(1, 44);
  int addition = proxyModelMath.addition(10, -1);
  System.out.println("執(zhí)行減法得到的正式數(shù)據(jù)為:"+subtraction);
  System.out.println("執(zhí)行加法得到的正式數(shù)據(jù)為:"+addition);
 }
}

關(guān)于使用Spring怎么實(shí)現(xiàn)動(dòng)態(tài)代理就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

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

AI