今天就跟大家聊聊有關(guān)Mybatis中怎么實現(xiàn)一個攔截器,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
專注于為中小企業(yè)提供成都網(wǎng)站制作、網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)廣陵免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了成百上千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。前世今生
它的本質(zhì)就是 JDK 的動態(tài)代理。首先先來復(fù)習(xí)一下動態(tài)代理我貼了一段最常見的 JDK 動態(tài)代理的代碼
//服務(wù)員的接口public interface Waiter { void serve();}//服務(wù)員的實現(xiàn)public class WaiterImpl implements Waiter { @Override public void serve() { System.out.println("服務(wù)中..."); }}//需要代理的對象處理器class WaitInvocationHandler implements InvocationHandler { private Waiter waiter; public WaitInvocationHandler(Waiter waiter1) { waiter = waiter1; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { System.out.println("你好"); Object invoke = method.invoke(waiter, args); System.out.println("再見"); return invoke; }}public class App { //普通的實現(xiàn) @Test public void fun() { Waiter waiter = new WaiterImpl(); waiter.serve(); } @Test public void fun1() { Waiter a = new WaiterImpl(); ClassLoader classLoader = getClass().getClassLoader(); Class[] classes = {Waiter.class}; //生成代理對象 Waiter waiterproxy = (Waiter) Proxy.newProxyInstance(classLoader, classes, new WaitInvocationHandler(a)); waiterproxy.serve(); }}
攔截器
V1
我現(xiàn)在要在函數(shù)執(zhí)行前后記錄日志操作,考慮需要在代理方法那里定義個攔截器的接口,如下代碼所示
//攔截器 V1 版本public interface MyInterceptorV1 { void interceptor();}//代理對象變成這個public class TargetProxyV1 implements InvocationHandler { private Target target; private MyInterceptorV1 myInterceptor; public TargetProxyV1(Target target, MyInterceptorV1 myInterceptor) { this.target = target; this.myInterceptor = myInterceptor; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { myInterceptor.interceptor(); return method.invoke(target, args); }}
這是最簡單的版本,但是我們很多時候需要攔截參數(shù)等根據(jù)參數(shù)判斷攔不攔截等,代碼更新如下
public interface MyInterceptorV1 { void interceptor(Method method, Object[] args);}@Overridepublic Object invoke(Object proxy, Method method, Object[] args) throws Throwable { myInterceptor.interceptor(method, args); return method.invoke(target, args);}
V2
似乎上面的方案很完美
廢話肯定不完美,不然怎么會有這段
沒錯,第二段代碼并不是很優(yōu)雅,有方法參數(shù)重復(fù),可以考慮將三者抽出來,直接在攔截器的實現(xiàn)里寫上 method.invoke(target, args); ,如下代碼所示
@Getter@Setter@AllArgsConstructorpublic class MyInvocation { private Object target; private Method method; private Object[] args; public Object proceed() throws InvocationTargetException, IllegalAccessException { return method.invoke(target, args); }}//沒錯這就是 V2 版本public interface MyInterceptorV2 { Object interceptor(MyInvocation invocation) throws Throwable;}
看完上述內(nèi)容,你們對Mybatis中怎么實現(xiàn)一個攔截器有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。