类 java.rmi.registry.Registry 和 java.rmi.Naming 之间的区别

发布于 2024-09-17 06:21:37 字数 139 浏览 6 评论 0原文

Registry 类和 Naming 类之间有什么区别。

在我的应用程序中,我使用 Registry 类。但我想了解 Naming 类及其用途?

What is the difference between the Registry class and Naming class.

In my application I am using Registry class. But I want to know about Naming class and its uses ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城°AllureLove 2024-09-24 06:21:37

不同之处在于 Naming 是一个具有静态方法的实用程序类,而 Registry 是一个远程接口。毫不奇怪,Naming 在内部调用 Registry。请注意,传递给 java.rmi.Namingname 参数采用 URL 格式,并包含注册表的位置,而使用 java.rmi.registry .Registry名称只是名称。

例如,您可以这样调用:

Naming.rebind("//host/objName", myObj);

而对于 Registry,您需要注册表对象上的现有句柄,并且您可以调用:

Registry registry = LocateRegistry.getRegistry("host");
registry.rebind("objName", myObj);

所以 Naming 实际上只是一个方便的类使您不必手动查找注册表 - 它一步执行注册表查找并重新绑定。

The difference is that Naming is a utility class with static methods, while Registry is a remote interface. Unsurprisingly, Naming calls Registry internally. Note that the name arguments you pass to java.rmi.Naming are in URL format, and include the location of the registry, whereas with java.rmi.registry.Registry, the name is just the name.

For example, you would call something like this:

Naming.rebind("//host/objName", myObj);

whereas with Registry, you need an existing handle on the registry object, and you'd call:

Registry registry = LocateRegistry.getRegistry("host");
registry.rebind("objName", myObj);

So Naming is really just a convenience class that saves you having to look up the Registry manually - it performs the registry lookup and rebind in one step.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文