I have a question regarding a specific way of instantiating a Java object.
Basically, I need to implement a Singleton which implements an interface. I currently try to use a factory and a bit of reflection to do this, trying to reproduce this example (5th post, precisely).
The part that I like is that through this method, I can change the Singleton's implementation quite easily.
The problem is that I don't really understand how to retrieve the Class name. In the example above, the System.getProperty() seems to be a way to do this, but the example doesn't show precisely all the types needed to do this (the field isn't typed). The problem is that I don't know which key to give to the getProperty() method. It seems that it must be the singleton private static field's name with .type (i.e. mySingleton.name), but it doesn't seem to work...
I would like to know how can I retrieve the class name.
By the way, if there's a better way to do this, I'm open to suggestions.


java.util.ServiceLoaderbefore you go too far down this path. – EJP Aug 13 '12 at 10:37