Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

I think the author of the paragraph mean something like this:

If you're using Spring Framework you have an application context where -by default- every bean defined there is a Singleton. That means that every time you request an instance of -let's say- MySpringBean you'll get the same instance every time.

But, what if you get an instance outside the Application Context? Maybe you just go wild and call directly the constructor of MySpringBean. Then you'll have two instance of MySpringBean: one in Spring's Application Context and the one you get by calling the constructor. So you'll supossed singleton is no Singleton at all.

On the other side, if you implement a hand-made implementation of the Singleton Pattern you'll always have one instance as the constructor is private and you can only get an instance through getInstance method.

share|improve this answer

By this the author means that a singleton bean in spring will only be singleton in that context i.e, if you load the application.xml file (file containing your bean details) at 2 places in your application, then there will basically be 2 contexts created there, and hence the 2 objects of the same singleton class will be different.

Example: If you have your beans declared in application.xml and you have defined a class A as singleton, and you do the following:

Class B{

public void load(){

//load application.xml here

} }

Class C{

public void load(){

//load application.xml here too

} }

then you will have 2 contexts here and the value of singleton A in class B will be independent of the value of singleton A in class C.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.