开发者社区 > 云原生 > 正文

同一个Context只会绑定一个defaultNode对象吧

public void entry(Context context, ResourceWrapper resourceWrapper, Object obj, int count, boolean prioritized, Object... args) throws Throwable {

    DefaultNode node = map.get(context.getName());
    if (node == null) {
        synchronized (this) {
            node = map.get(context.getName());
            if (node == null) {
                node = Env.nodeBuilder.buildTreeNode(resourceWrapper, null);
                HashMap<String, DefaultNode> cacheMap = new HashMap<String, DefaultNode>(map.size());
                cacheMap.putAll(map);
                cacheMap.put(context.getName(), node);
                map = cacheMap;
            }
            // Build invocation tree
            ((DefaultNode)context.getLastNode()).addChild(node);
        }
    }

    context.setCurNode(node);
    fireEntry(context, resourceWrapper, node, count, prioritized, args);
}

感觉出现不了,一个context中有多个DefaultNode的情况 那么在一个Context,不管资源名是啥,只有一个default对象,只不过会被多个Entry指向 我怎么理解没错吧

原提问者GitHub用户WanXinTao

展开
收起
码字王 2023-05-19 19:30:48 82 0
1 条回答
写回答
取消 提交回答
  • 同一上下文中的不同资源具有不同的DefaultNode。有关更多信息,您可以参考javadoc。

    原回答者GitHub用户sczyh30

    2023-05-19 22:46:05
    赞同 展开评论 打赏
问答地址:

阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载