引用监听扩展

扩展说明

当有服务引用时,触发该事件。

扩展接口

com.alibaba.dubbo.rpc.InvokerListener

扩展配置

  1. <!-- 引用服务监听 -->
  2. <dubbo:reference listener="xxx,yyy" />
  3. <!-- 引用服务缺省监听器 -->
  4. <dubbo:consumer listener="xxx,yyy" />

已知扩展

com.alibaba.dubbo.rpc.listener.DeprecatedInvokerListener

扩展示例

Maven 项目结构:

  1. src
  2. |-main
  3. |-java
  4. |-com
  5. |-xxx
  6. |-XxxInvokerListener.java (实现InvokerListener接口)
  7. |-resources
  8. |-META-INF
  9. |-dubbo
  10. |-com.alibaba.dubbo.rpc.InvokerListener (纯文本文件,内容为:xxx=com.xxx.XxxInvokerListener)

XxxInvokerListener.java:

  1. package com.xxx;
  2. import com.alibaba.dubbo.rpc.InvokerListener;
  3. import com.alibaba.dubbo.rpc.Invoker;
  4. import com.alibaba.dubbo.rpc.RpcException;
  5. public class XxxInvokerListener implements InvokerListener {
  6. public void referred(Invoker<?> invoker) throws RpcException {
  7. // ...
  8. }
  9. public void destroyed(Invoker<?> invoker) throws RpcException {
  10. // ...
  11. }
  12. }

META-INF/dubbo/com.alibaba.dubbo.rpc.InvokerListener:

  1. xxx=com.xxx.XxxInvokerListener

原文: http://dubbo.apache.org/#!/docs/dev/impls/invoker-listener.md?lang=zh-cn