I was reading about Spring's bean declaration and how you use Factory-method to pass the instance to the bean declaration when the class has no public constructor...
package com.springinaction.springidol;
public class Stage{
private Stage(){
}
private static class StageSingletonHolder{
static Stage instance=new Stage();
}
public static Stage getInstance(){
return StageSingletonHolder.instance;
}
}
after a few more lines i found the below text..
Spring’s notion of singletons is limited to the scope of the Spring context. Unlike true singletons, which guarantee only a single instance of a class per classloader, Spring’s singleton beans only guarantee a single instance of the bean definition per the application context—nothing is stopping you from instantiating that same class in a more conventional way or even defining several declarations that instantiate the same class.
I do not understand how this can/would be done..Could some one please explain?