Spring如何基于Proxy及cglib實現(xiàn)動態(tài)代理
spring中提供了兩種動態(tài)代理的方式,分別是Java Proxy以及cglib
JavaProxy只能代理接口,而cglib是通過繼承的方式,實現(xiàn)對類的代理
添加一個接口以及對應的實現(xiàn)類
public interface HelloInterface { void sayHello();}
public class HelloInterfaceImpl implements HelloInterface { @Override public void sayHello() { System.out.println('hello'); }}
JavaProxy通過實現(xiàn)InvocationHandler實現(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實現(xiàn)MethodInterceptor進行方法上的代理
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; }}
分別實現(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(); }
可以看到對于的代理信息輸出
before hello for cglibhelloafter hello for cglibbefore hello for proxyhelloafter hello for proxy
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關文章:
1. Python安裝并操作redis實現(xiàn)流程詳解2. pip已經(jīng)安裝好第三方庫但pycharm中import時還是標紅的解決方案3. CSS自定義滾動條樣式案例詳解4. 詳解CSS偽元素的妙用單標簽之美5. 將properties文件的配置設置為整個Web應用的全局變量實現(xiàn)方法6. Ajax實現(xiàn)表格中信息不刷新頁面進行更新數(shù)據(jù)7. HTML <!DOCTYPE> 標簽8. Java Spring WEB應用實例化如何實現(xiàn)9. ajax post下載flask文件流以及中文文件名問題10. msxml3.dll 錯誤 800c0019 系統(tǒng)錯誤:-2146697191解決方法
