最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Spring如何基于Proxy及cglib實(shí)現(xiàn)動(dòng)態(tài)代理

 更新時(shí)間:2020年06月22日 11:04:13   作者:yytxdy  
這篇文章主要介紹了Spring如何基于Proxy及cglib實(shí)現(xiàn)動(dòng)態(tài)代理,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

spring中提供了兩種動(dòng)態(tài)代理的方式,分別是Java Proxy以及cglib

JavaProxy只能代理接口,而cglib是通過繼承的方式,實(shí)現(xiàn)對(duì)類的代理

添加一個(gè)接口以及對(duì)應(yīng)的實(shí)現(xiàn)類

public interface HelloInterface {
  void sayHello();
}
public class HelloInterfaceImpl implements HelloInterface {
  @Override
  public void sayHello() {
    System.out.println("hello");
  }
}

JavaProxy通過實(shí)現(xiàn)InvocationHandler實(shí)現(xiàn)代理

public class CustomInvocationHandler implements InvocationHandler {
  private HelloInterface helloInterface;

  public CustomInvocationHandler(HelloInterface helloInterface) {
    this.helloInterface = helloInterface;
  }

  @Override
  public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    System.out.println("before hello for proxy");
    Object result = method.invoke(helloInterface, args);
    System.out.println("after hello for proxy");
    return result;
  }
}

而cglib實(shí)現(xiàn)MethodInterceptor進(jìn)行方法上的代理

public class CustomMethodInterceptor implements MethodInterceptor {
  @Override
  public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
    System.out.println("before hello for cglib");
    Object result = methodProxy.invokeSuper(o, objects);
    System.out.println("after hello for cglib");
    return result;
  }

}

分別實(shí)現(xiàn)調(diào)用代碼

public static void main(String[] args) {
    Enhancer enhancer = new Enhancer();
    enhancer.setSuperclass(HelloInterfaceImpl.class);
    enhancer.setCallback(new CustomMethodInterceptor());
    HelloInterface target = (HelloInterface) enhancer.create();
    target.sayHello();

    CustomInvocationHandler invocationHandler = new CustomInvocationHandler(new HelloInterfaceImpl());
    HelloInterface target2 = (HelloInterface) Proxy.newProxyInstance(Demo.class.getClassLoader(), new Class[]{HelloInterface.class}, invocationHandler);
    target2.sayHello();
  }

可以看到對(duì)于的代理信息輸出

before hello for cglib
hello
after hello for cglib
before hello for proxy
hello
after hello for proxy

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

城市| 依兰县| 张北县| 临漳县| 吴堡县| 江陵县| 万源市| 青龙| 肥城市| 宁城县| 获嘉县| 山东省| 吴堡县| 上思县| 龙游县| 鸡西市| 六枝特区| 独山县| 滨海县| 靖江市| 拉萨市| 寿阳县| 青河县| 岳阳市| 大同县| 江孜县| 天津市| 扶沟县| 察雅县| 乌拉特前旗| 鹿泉市| 桦南县| 灵川县| 大邑县| 类乌齐县| 巍山| 长治市| 兴安盟| 博爱县| 周宁县| 河津市|