溫馨提示×

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

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

Java如何通過(guò)動(dòng)態(tài)代理實(shí)現(xiàn)一個(gè)簡(jiǎn)單的攔截器操作

發(fā)布時(shí)間:2021-07-09 13:37:37 來(lái)源:億速云 閱讀:123 作者:chen 欄目:開發(fā)技術(shù)

這篇文章主要介紹“Java如何通過(guò)動(dòng)態(tài)代理實(shí)現(xiàn)一個(gè)簡(jiǎn)單的攔截器操作”,在日常操作中,相信很多人在Java如何通過(guò)動(dòng)態(tài)代理實(shí)現(xiàn)一個(gè)簡(jiǎn)單的攔截器操作問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Java如何通過(guò)動(dòng)態(tài)代理實(shí)現(xiàn)一個(gè)簡(jiǎn)單的攔截器操作”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

一、代理

在使用動(dòng)態(tài)代理實(shí)現(xiàn)攔截器之前我們先簡(jiǎn)單了解一下什么Java的代理。

代理,顧名思義,就是不直接操作被代理(下面都用目標(biāo)對(duì)象稱呼,聽起來(lái)舒服一些)對(duì)象,而是通過(guò)一個(gè)代理對(duì)象去間接的使用目標(biāo)對(duì)象中的方法。代理分為兩種模式,一種是靜態(tài)代理,一種是動(dòng)態(tài)代理。接下來(lái)先寫一個(gè)靜態(tài)代理的例子。

無(wú)論是靜態(tài)代理還是動(dòng)態(tài)代理,目標(biāo)對(duì)象(target)都要實(shí)現(xiàn)一個(gè)接口(interface),注意,如果使用cglib提供的代理,則不必實(shí)現(xiàn)接口,而是通過(guò)子類去實(shí)現(xiàn),暫不討論該種方式。

(1)先定義一個(gè)接口

public interface IUserDao {
    void save();
}

(2)定義目標(biāo)對(duì)象(target)

public class UserDaoImpl implements IUserDao {
    public void save() {
        System.out.println("--------已經(jīng)保存數(shù)據(jù)---------");
    }
}

(3)定義代理對(duì)象

public class UserDaoProxy implements IUserDao {
 private IUserDao target;//將目標(biāo)對(duì)象放到代理對(duì)象中
 public UserDaoProxy(IUserDao target){
  this.target = target;
  }
 public void save() {
     System.out.println("------開始事務(wù)------");
            target.save();
     System.out.println("-------提交事務(wù)------");
    }
}

測(cè)試一下:

public class Test {
public static void main(String[] args){
    IUserDao userDao = new UserDaoImpl();
    UserDaoProxy proxy = new UserDaoProxy(userDao);
    proxy.save();//通過(guò)代理對(duì)象調(diào)用save方法
    }
}

輸出結(jié)果為:

------開始事務(wù)------
--------已經(jīng)保存數(shù)據(jù)---------

-------提交事務(wù)------

這種方式有一個(gè)問(wèn)題,就是代理對(duì)象必須也要實(shí)現(xiàn)被代理對(duì)象所實(shí)現(xiàn)的同一個(gè)接口,這就出現(xiàn)了嚴(yán)重的耦合。所以,下面使用一種改進(jìn)的方式,即動(dòng)態(tài)代理(jdk代理)。

動(dòng)態(tài)代理方式也需要目標(biāo)對(duì)象(target)實(shí)現(xiàn)一個(gè)接口

(1)定義一個(gè)接口(IUserDao)

(2)定義一個(gè)目標(biāo)對(duì)象類(UserDaoImpl)

(3)創(chuàng)建動(dòng)態(tài)代理類

public class ProxyFactory {
    //維護(hù)一個(gè)目標(biāo)對(duì)象
    private Object target; 
    public ProxyFactory(Object target) {
        this.target = target;
    }
 
    //給目標(biāo)對(duì)象生成代理對(duì)象
    public Object getProxyInstance() {
        System.out.println("----target class---" + target.getClass());
        System.out.println("----target interfaces---" +
            target.getClass().getInterfaces());
 
        return Proxy.newProxyInstance(target.getClass().getClassLoader(),
            target.getClass().getInterfaces(),
            new InvocationHandler() {
                public Object invoke(Object proxy, Method method, Object[] args)
                    throws Throwable {
                    System.out.println("----開始事務(wù)2-----");
 
                    //執(zhí)行目標(biāo)對(duì)象方法
                    Object returnValue = method.invoke(target, args);
                    System.out.println("----提交事務(wù)2----");
 
                    return returnValue;
                }
            });
    }
}

測(cè)試一下:

public class Test {
    public static void main(String[] args) {
        //目標(biāo)對(duì)象
        IUserDao target = new UserDao();
        System.out.println(target.getClass());
 
        //給目標(biāo)對(duì)象創(chuàng)建代理對(duì)象
        IUserDao proxy = (IUserDao) new ProxyFactory(target).getProxyInstance();
        System.out.println("----proxy----:" + proxy.getClass());
        proxy.save();
        proxy.delete();
    }
}

輸出結(jié)果:

class com.jd.pattern.proxy.dynamicProxy.UserDao
----target class---class com.jd.pattern.proxy.dynamicProxy.UserDao
----target interfaces---[Ljava.lang.Class;@1fb3ebeb
----proxy----:class com.sun.proxy.$Proxy0
----開始事務(wù)2-----
-----保存完成------
----提交事務(wù)2----
----開始事務(wù)2-----
----刪除完成----

----提交事務(wù)2----

二、使用動(dòng)態(tài)代理實(shí)現(xiàn)一個(gè)簡(jiǎn)單的攔截器

既然是采用動(dòng)態(tài)代理的方式,那么肯定會(huì)有 接口、目標(biāo)類、代理類,再加一個(gè)攔截器

1、定義一個(gè)接口

public interface BusinessFacade {
    void doSomething();
}

2、定義一個(gè)目標(biāo)對(duì)象

public class BusinessClass implements BusinessFacade {
    public void doSomething() {
        System.out.println("在業(yè)務(wù)組件BusinessClass中調(diào)用doSomething方法");
    }
}

3、創(chuàng)建攔截器

public class InterceptorClass {
    public void before() {
        System.out.println("在InterceptorClass中調(diào)用方法:before()");
    }
 
    public void after() {
        System.out.println("在InterceptorClass中調(diào)用方法:after()");
    }
}

4、創(chuàng)建代理

public class DynamicProxyHandler {
    //聲明被代理對(duì)象
    private Object target;
    //創(chuàng)建攔截器
    InterceptorClass interceptor = new InterceptorClass();
    //動(dòng)態(tài)生成一個(gè)代理對(duì)象,并綁定被代理類和代理處理器
    public Object getProxyInstance(final Object target) {
        this.target = target;
        return Proxy.newProxyInstance(target.getClass().getClassLoader(),
            target.getClass().getInterfaces(),
            new InvocationHandler() {
                public Object invoke(Object proxy, Method method, Object[] args)
                    throws Throwable {
                    interceptor.before();
                    Object result = method.invoke(target, args);
                    interceptor.after();
                    return result;
                }
            });
    }
}

測(cè)試一下:

public class Test {
    public static void main(String[] args) {
        //創(chuàng)建動(dòng)態(tài)代理工具
        DynamicProxyHandler proxyHandler = new DynamicProxyHandler();
        //創(chuàng)建業(yè)務(wù)組件
        BusinessFacade target = new BusinessClass();
        //獲取代理對(duì)象
        BusinessFacade proxy = (BusinessFacade) proxyHandler.getProxyInstance(target);
        //通過(guò)代理對(duì)象調(diào)用目標(biāo)對(duì)象方法
        proxy.doSomething();
    }
}

輸出結(jié)果:

在InterceptorClass中調(diào)用方法:before()
在業(yè)務(wù)組件BusinessClass中調(diào)用doSomething方法
在InterceptorClass中調(diào)用方法:after()

到此,關(guān)于“Java如何通過(guò)動(dòng)態(tài)代理實(shí)現(xiàn)一個(gè)簡(jiǎn)單的攔截器操作”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向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