dubbo扩展 使用拦截器
Posted 程序员超时空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dubbo扩展 使用拦截器相关的知识,希望对你有一定的参考价值。
参考:http://www.cnblogs.com/lizo/p/6701896.html
http://wely.iteye.com/blog/2304718
以拦截器作为例子说明
<!-- 在xml配置文件中设置 -->
<dubbo:reference filter="xxx,yyy" /> <!-- 消费方调用过程拦截 -->
<dubbo:consumer filter="xxx,yyy"/> <!-- 消费方调用过程缺省拦截器,将拦截所有reference -->
<dubbo:service filter="xxx,yyy" /> <!-- 提供方调用过程拦截 -->
<dubbo:provider filter="xxx,yyy"/> <!-- 提供方调用过程缺省拦截器,将拦截所有service -->
dubbo扩展配置文件
src
|-main
|-java
|-com
|-xxx
|-XxxFilter.java (实现Filter接口)
|-resources
|-META-INF
|-dubbo
|-com.alibaba.dubbo.rpc.Filter (纯文本文件,内容为:xxx=com.xxx.XxxFilter)
//扩展类
package com.xxx;
import com.alibaba.dubbo.rpc.Filter;
import com.alibaba.dubbo.rpc.Invoker;
import com.alibaba.dubbo.rpc.Invocation;
import com.alibaba.dubbo.rpc.Result;
import com.alibaba.dubbo.rpc.RpcException;
public class XxxFilter implements Filter
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException
// before filter ...
Result result = invoker.invoke(invocation);
// after filter ...
return result;
以上是关于dubbo扩展 使用拦截器的主要内容,如果未能解决你的问题,请参考以下文章
Dubbo中Filter过滤器,拦截器的实现原理,实现自定义的Filter过滤器