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 ?
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 ?
Copyright © 2021 Jogjafile Inc.
The difference is that
Naming
is a utility class with static methods, whileRegistry
is a remote interface. Unsurprisingly,Naming
callsRegistry
internally. Note that thename
arguments you pass tojava.rmi.Naming
are in URL format, and include the location of the registry, whereas withjava.rmi.registry.Registry
, thename
is just the name.For example, you would call something like this:
whereas with
Registry
, you need an existing handle on the registry object, and you'd call:So
Naming
is really just a convenience class that saves you having to look up theRegistry
manually - it performs the registry lookup and rebind in one step.