This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I would like that every time that I'll perform :
SpringUtil.lookupComponent("myObject")
I spring will create new instance of this object
I set this bean in the relevant xml file as: scope="prototype"
but still spring created new instance on the first time and from then, every time that the same bean performed again
SpringUtil.lookupComponent("myObject") spring didn't generate new instance but returned the same old "MyObject" does anyone know why and how I can
force the lookup command to generate new instance for me.
I also saw in Spring documentation that the definition of scope prototype is:
Scopes a single bean definition to any number of object instances.
Which means that Spring doesn't necesseraly generate new instance every time that the same parent bean requires it.
Hong Anderson
Ranch Hand
Joined: Jul 05, 2005
Posts: 1936
posted
0
Could you please to post the code of SpringUtil?
SCJA 1.0, SCJP 1.4, SCWCD 1.4, SCBCD 1.3, SCJP 5.0, SCEA 5, SCBCD 5; OCUP - Fundamental, Intermediate and Advanced; IBM Certified Solution Designer - OOAD, vUML 2; SpringSource Certified Spring Professional
Guy Roth
Ranch Hand
Joined: Aug 09, 2009
Posts: 74
posted
0
Thanks for your help!
the problem was indeed in our internal code of SpringUtil (I though that SpringUtil is Springs original code and not our invention)