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();
}
}
相關文章
- SpringMVC中的攔截器Interceptor實現SpringMVC
- Mybatis 分頁:Pagehelper + 攔截器實現MyBatis
- SpringBoot中的過濾器和攔截器的實現Spring Boot過濾器
- SpringBoot實現過濾器、攔截器與切片Spring Boot過濾器
- Spring MVC 中的攔截器的使用“攔截器基本配置” 和 “攔截器高階配置”SpringMVC
- SpringMVC攔截器,設定不攔截的URLSpringMVC
- Flume內建攔截器與自定義攔截器(程式碼實戰)
- Autofac實現攔截器和切面程式設計程式設計
- 前端架構之vue+axios 前端實現登入攔截(路由攔截、http攔截)前端架構VueiOS路由HTTP
- MyBatis攔截器優雅實現資料脫敏MyBatis
- flutetr dio 攔截器實現 token 失效重新整理
- vue中使用el-dialog + axios 實現攔截器VueiOS
- SpringBoot自定義攔截器實現IP白名單功能Spring Boot
- sql攔截器SQL
- SpringMVC攔截器SpringMVC
- Mybatis 攔截器MyBatis
- axios 攔截器iOS
- spring攔截器Spring
- axios攔截器iOS
- MyBatis攔截器MyBatis
- 聊聊如何實現一個帶有攔截器功能的SPI
- SpringMVC中的攔截器SpringMVC
- grpc中的攔截器RPC
- SpringMVC-攔截器SpringMVC
- gRPC(3):攔截器RPC
- 【SpringMVC】 4.3 攔截器SpringMVC
- Mybatis Interceptor 攔截器MyBatis
- spring boot 攔截器Spring Boot
- 攔截器的使用問題
- spring mvc 攔截器的使用SpringMVC
- webwork的攔截器真是好用Web
- SpringBoot 整合 Shiro 實現登入攔截Spring Boot
- 小程式手動實現路由攔截路由
- Asp.Netcore使用Filter來實現介面的全域性異常攔截,以及前置攔截和後置攔截ASP.NETNetCoreFilter
- SpringBoot攔截器中獲取註解、攔截器中注入ServiceSpring Boot
- React、Axios、MockJs實現Ajax的請求攔截ReactiOSMockJS
- SSM專案使用攔截器實現登入驗證功能SSM
- vue.js新增攔截器,實現token認證(使用axios)Vue.jsiOS