Java實現的攔截器
攔截器在在流行的開源框架中很常見,依賴的技術就是Java的動態代理。
理解攔截器的核心原理對理解這些開源框架的體系結構至關重要。
下面以一個簡單的模型的來說明攔截器的實現的一般方法。
模型分為以下模組:
業務元件:是被代理和被攔截的物件。
代理處理器:實現了InvocationHandler介面的一個物件
代理物件:Proxy物件。
攔截器:普通的JavaBean,在呼叫業務方法的之前或者之後會自動攔截並執行自己的一些方法。
代理處理器:實現了InvocationHandler介面的一個物件
代理物件:Proxy物件。
攔截器:普通的JavaBean,在呼叫業務方法的之前或者之後會自動攔截並執行自己的一些方法。
客戶端:執行業務處理的入口。
以下是模型的實現
一、業務元件:分為業務介面和業務類
/**
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:32:06
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 業務元件介面
*/
public interface BusinessInterface {
public void doSomething();
}
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:32:06
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 業務元件介面
*/
public interface BusinessInterface {
public void doSomething();
}
/**
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:31:12
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 業務元件
*/
public class BusinessClass implements BusinessInterface{
public void doSomething() {
System.out.println("業務元件BusinessClass方法呼叫:doSomething()");
}
}
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:31:12
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 業務元件
*/
public class BusinessClass implements BusinessInterface{
public void doSomething() {
System.out.println("業務元件BusinessClass方法呼叫:doSomething()");
}
}
二、代理處理器:包含了業務物件繫結動態代理類的處理,並實現了InvocationHandler介面的invoke方法。
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:24:10
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 動態代理處理器工具
*/
public class DynamicProxyHandler implements InvocationHandler {
private Object business; //被代理物件
private InterceptorClass interceptor = new InterceptorClass(); //攔截器
/**
* 動態生成一個代理類物件,並繫結被代理類和代理處理器
*
* @param business
* @return 代理類物件
*/
public Object bind(Object business) {
this.business = business;
return Proxy.newProxyInstance(
//被代理類的ClassLoader
business.getClass().getClassLoader(),
//要被代理的介面,本方法返回物件會自動聲稱實現了這些介面
business.getClass().getInterfaces(),
//代理處理器物件
this);
}
/**
* 代理要呼叫的方法,並在方法呼叫前後呼叫聯結器的方法.
*
* @param proxy 代理類物件
* @param method 被代理的介面方法
* @param args 被代理介面方法的引數
* @return 方法呼叫返回的結果
* @throws Throwable
*/
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Object result = null;
interceptor.before();
result=method.invoke(business,args);
interceptor.after();
return null; //To change body of implemented methods use File | Settings | File Templates.
}
}
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
/**
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:24:10
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 動態代理處理器工具
*/
public class DynamicProxyHandler implements InvocationHandler {
private Object business; //被代理物件
private InterceptorClass interceptor = new InterceptorClass(); //攔截器
/**
* 動態生成一個代理類物件,並繫結被代理類和代理處理器
*
* @param business
* @return 代理類物件
*/
public Object bind(Object business) {
this.business = business;
return Proxy.newProxyInstance(
//被代理類的ClassLoader
business.getClass().getClassLoader(),
//要被代理的介面,本方法返回物件會自動聲稱實現了這些介面
business.getClass().getInterfaces(),
//代理處理器物件
this);
}
/**
* 代理要呼叫的方法,並在方法呼叫前後呼叫聯結器的方法.
*
* @param proxy 代理類物件
* @param method 被代理的介面方法
* @param args 被代理介面方法的引數
* @return 方法呼叫返回的結果
* @throws Throwable
*/
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Object result = null;
interceptor.before();
result=method.invoke(business,args);
interceptor.after();
return null; //To change body of implemented methods use File | Settings | File Templates.
}
}
三、攔截器:普通的JavaBean,在呼叫業務方法的之前或者之後會自動攔截並執行自己的一些方法。
/**
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:26:31
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 攔截器
*/
public class InterceptorClass {
public void before(){
System.out.println("攔截器InterceptorClass方法呼叫:before()!");
}
public void after(){
System.out.println("攔截器InterceptorClass方法呼叫:after()!");
}
}
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-20 23:26:31
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 攔截器
*/
public class InterceptorClass {
public void before(){
System.out.println("攔截器InterceptorClass方法呼叫:before()!");
}
public void after(){
System.out.println("攔截器InterceptorClass方法呼叫:after()!");
}
}
四、模擬客戶端:執行業務處理的入口。
/**
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-21 0:32:55
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 客戶端
*/
public class Client {
public static void main(String args[]) {
DynamicProxyHandler handler = new DynamicProxyHandler();
BusinessInterface business = new BusinessClass();
BusinessInterface businessProxy = (BusinessInterface) handler.bind(business);
businessProxy.doSomething();
}
}
* Created by IntelliJ IDEA.
* User: leizhimin
* Date: 2008-3-21 0:32:55
* Company: LavaSoft(http://lavasoft.blog.51cto.com/)
* 客戶端
*/
public class Client {
public static void main(String args[]) {
DynamicProxyHandler handler = new DynamicProxyHandler();
BusinessInterface business = new BusinessClass();
BusinessInterface businessProxy = (BusinessInterface) handler.bind(business);
businessProxy.doSomething();
}
}
相關文章
- Java Struts 實現攔截器Java
- Java interceptor 攔截器Java
- 基於node Express 攔截器的實現Express
- SpringMVC中的攔截器Interceptor實現SpringMVC
- Mybatis 分頁:Pagehelper + 攔截器實現MyBatis
- Struts2攔截器實現原理
- 攔截器,攔截器棧總結
- Struts2中攔截器的簡單實現
- Spring MVC 中的攔截器的使用“攔截器基本配置” 和 “攔截器高階配置”SpringMVC
- Flume內建攔截器與自定義攔截器(程式碼實戰)
- Autofac實現攔截器和切面程式設計程式設計
- 【Struts2】:攔截器實現方法過濾
- SpringBoot中的過濾器和攔截器的實現Spring Boot過濾器
- SpringBoot實現過濾器、攔截器與切片Spring Boot過濾器
- SpringMVC攔截器,設定不攔截的URLSpringMVC
- 前端架構之vue+axios 前端實現登入攔截(路由攔截、http攔截)前端架構VueiOS路由HTTP
- MyBatis攔截器MyBatis
- Mybatis 攔截器MyBatis
- sql攔截器SQL
- flutetr dio 攔截器實現 token 失效重新整理
- MyBatis攔截器優雅實現資料脫敏MyBatis
- SpringMVC使用攔截器實現許可權控制SpringMVC
- Mybatis中的攔截器MyBatis
- 聊聊如何實現一個帶有攔截器功能的SPI
- axios攔截器iOS
- Mybatis Interceptor 攔截器MyBatis
- axios 攔截器iOS
- spring攔截器Spring
- SpringMVC攔截器SpringMVC
- 怎樣攔截classloader實現類方法截獲
- webwork的攔截器真是好用Web
- grpc中的攔截器RPC
- SpringMVC中的攔截器SpringMVC
- 小程式手動實現路由攔截路由
- java web 過濾器跟攔截器的區別和使用JavaWeb過濾器
- vue中用axios攔截器攔截請求和響應VueiOS
- SSM專案使用攔截器實現登入驗證功能SSM
- vue中使用el-dialog + axios 實現攔截器VueiOS