Progressbar from Spring Context? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T01:17:44Zhttp://stackoverflow.com/feeds/question/198341http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/198341/progressbar-from-spring-context0Progressbar from Spring Context?tobsen2008-10-13T17:28:37Z2009-01-04T15:33:13Z
<p>I would like to create a window with a progressbar which shows the current status of Spring's object instantiation. From Spring.Net's <a href="http://www.springframework.net/docs/1.1.2/reference/html/objects.html#objects-factory-customizing" rel="nofollow">documentation</a> it seems that <code>IObjectPostProcessors</code> is the right point to start and track whenever an Object has been instanciated. However in order to get "Percentage of instantiated classes" I need to ask <code>ObjectDefinitionCount</code> of spring's factory to get the number of configured object. However this does not work until the contextcreation has been finished (also <a href="http://stackoverflow.com/questions/179140/how-do-i-find-out-when-the-springnet-root-context-has-loaded">this problem</a> problem seems to be related).</p>
<p>If it's not possible to use Spring to get the start-up status, how do you display information during application start up to the user?</p>
http://stackoverflow.com/questions/198341/progressbar-from-spring-context/248624#2486241Answer by Miguel Ping for Progressbar from Spring Context?Miguel Ping2008-10-29T22:13:08Z2008-10-29T22:13:08Z<p>I can provide you with a workaround, although it's not perfect it should probably be a good estimate.</p>
<ul>
<li>You use a persistent storage mechanism (properties files, db, whatever) to keep track of the number of created beans. </li>
<li>You use IObjectPostProcessors to update the count of initializations</li>
<li>On the first run, obviously the value will be 0</li>
<li>On the subsequent runs, you use the last count to <strong>estimate</strong> the number of initializations that are to be done.</li>
</ul>
<p>Of course, this is not accurate, but it should provide a good estimate most of the times.</p>
http://stackoverflow.com/questions/198341/progressbar-from-spring-context/411151#4111511Answer by Erich Eichinger for Progressbar from Spring Context?Erich Eichinger2009-01-04T15:33:13Z2009-01-04T15:33:13Z<p>Hi,</p>
<p>Spring reads in the configuration in 2 steps - first all object definitions are read from the config and second those definitions are processed, instantiating singletons if necessary.</p>
<p>You should get what you want by implementing an IObjectFactoryPostProcessor. ObjectFactoryPostProcessors are the first objects that get instantiated before anything else. At this time the number of object definitions is already available. Using an IObjectPostProcessor gives you the information about each object being instantiated.</p>
<p>If you are after getting the number of object definitions already at the time the configuration is loaded, I guess it is possible, but Spring reads the configuration in a single pass. You'd need to obtain the total number of objects using a different technique.</p>
<p>hth,
Erich</p>