Dubbo自定義Filter統一處理異常

Dubbo版本:2.7apache

 

 

使用自定義Filter注意事項app

 

一、自定義名稱不能和默認Filter相同,不然可能不生效spa

 

二、只用定義Filter類和META-INF下的文本文件,不用添加配置,@Activate註解會自動激活code

 

三、業務最好拋RpcException異常,拋其它RuntimeException子類,方法中的exception會識別爲RuntimeException,而不是異常子類對象

 

四、ResultCustom爲自定義返回對象,Filter捕獲異常後轉換爲該對象返回給客戶端blog

 

自定義Filterrpc

@Activate(group = CommonConstants.PROVIDER)
public class NewFilter extends ListenableFilter {

    public NewFilter() {
        super.listener = new NewFilter.ExceptionListener();
    }

    public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
        return invoker.invoke(invocation);
    }

    static class ExceptionListener implements Listener {

        public void onResponse(Result appResponse, Invoker<?> invoker, Invocation invocation)         {

            if (appResponse.hasException() && GenericService.class != invoker.getInterface()) {

                try {

                    Throwable exception = appResponse.getException();

                    if (exception instanceof RpcException) {
  
             ResultCustom response = ResultCustom.error(exception.getMessage());
                     appResponse.setValue(response);
                     appResponse.setException(null);

                     return;
                    }

                } catch (Throwable e) {
                    return;
                }
            }
        }
    }
}

 

文本文件resources-->META-INF-->dubbo-->org.apache.dubbo.rpc.Filterget

newFilter=xx.NewFilter(完整類路徑)io

相關文章
相關標籤/搜索