中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

dubbo中ConsumerContextFilter的作用是什么

發布時間:2021-07-30 14:25:36 來源:億速云 閱讀:164 作者:Leah 欄目:大數據

這期內容當中小編將會給大家帶來有關dubbo中ConsumerContextFilter的作用是什么,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

ConsumerContextFilter

dubbo-2.7.2/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/filter/ConsumerContextFilter.java

@Activate(group = CONSUMER, order = -10000)
public class ConsumerContextFilter extends ListenableFilter {

    public ConsumerContextFilter() {
        super.listener = new ConsumerContextListener();
    }

    @Override
    public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
        RpcContext.getContext()
                .setInvoker(invoker)
                .setInvocation(invocation)
                .setLocalAddress(NetUtils.getLocalHost(), 0)
                .setRemoteAddress(invoker.getUrl().getHost(),
                        invoker.getUrl().getPort());
        if (invocation instanceof RpcInvocation) {
            ((RpcInvocation) invocation).setInvoker(invoker);
        }
        try {
            RpcContext.removeServerContext();
            return invoker.invoke(invocation);
        } finally {
            RpcContext.removeContext();
        }
    }

    static class ConsumerContextListener implements Listener {
        @Override
        public void onResponse(Result appResponse, Invoker<?> invoker, Invocation invocation) {
            RpcContext.getServerContext().setAttachments(appResponse.getAttachments());
        }

        @Override
        public void onError(Throwable t, Invoker<?> invoker, Invocation invocation) {

        }
    }
}
  • ConsumerContextFilter繼承了ListenableFilter,其invoke方法在invoke之前會給RpcContext.getContext()設置invoker、invocation、localAddress、remoteAddress并移除serverContext;在invoke之后移除當前context;其listener為ConsumerContextListener,在onResponse的時候,會給RpcContext.getServerContext()設置attachments

實例

dubbo-2.7.2/dubbo-rpc/dubbo-rpc-api/src/test/java/org/apache/dubbo/rpc/filter/ConsumerContextFilterTest.java

public class ConsumerContextFilterTest {
    Filter consumerContextFilter = new ConsumerContextFilter();

    @Test
    public void testSetContext() {
        URL url = URL.valueOf("test://test:11/test?group=dubbo&version=1.1");
        Invoker<DemoService> invoker = new MyInvoker<DemoService>(url);
        Invocation invocation = new MockInvocation();
        Result asyncResult = consumerContextFilter.invoke(invoker, invocation);
        asyncResult.thenApplyWithContext(result -> {
            assertEquals(invoker, RpcContext.getContext().getInvoker());
            assertEquals(invocation, RpcContext.getContext().getInvocation());
            assertEquals(NetUtils.getLocalHost() + ":0", RpcContext.getContext().getLocalAddressString());
            assertEquals("test:11", RpcContext.getContext().getRemoteAddressString());
            return result;
        });
    }
}
  • 這里使用asyncResult.thenApplyWithContext來驗證一下RpcContext.getContext()的invoker、invocation、localhost、remoteAddress值

小結

ConsumerContextFilter繼承了ListenableFilter,其invoke方法在invoke之前會給RpcContext.getContext()設置invoker、invocation、localAddress、remoteAddress并移除serverContext;在invoke之后移除當前context;其listener為ConsumerContextListener,在onResponse的時候,會給RpcContext.getServerContext()設置attachments

上述就是小編為大家分享的dubbo中ConsumerContextFilter的作用是什么了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

陵川县| 万全县| 惠州市| 万州区| 吴江市| 霍林郭勒市| 双流县| 梅州市| 寿阳县| 遂平县| 肇源县| 靖远县| 满洲里市| 沾化县| 台北市| 云浮市| 剑川县| 镶黄旗| 湘阴县| 韶山市| 广州市| 云安县| 哈密市| 布尔津县| 多伦县| 融水| 扎囊县| 安化县| 宜昌市| 长子县| 金塔县| 永修县| 建平县| 镇康县| 平邑县| 贵德县| 五寨县| 神农架林区| 多伦县| 广丰县| 浦县|