How does db4o instantiate objects ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:19:11Z http://stackoverflow.com/feeds/question/910037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/910037/how-does-db4o-instantiate-objects 3 How does db4o instantiate objects ? lbownik 2009-05-26T10:36:57Z 2009-05-26T10:52:43Z <p>What mechanism does db4o use to instatniate stored objects ?</p> <p>My class isn't Serializable and doesn't provide zero argument constructor and the only constructor throws NullPointerException when it's argument is null.</p> <p>In spite of that db4o can still instantiate stored objects of that class (thugh with incorrect values).</p> <p>If I can understand the mechanism perchaps i can track the bug I have.</p> <p>I will appreciate any links :]</p> http://stackoverflow.com/questions/910037/how-does-db4o-instantiate-objects/910075#910075 2 Answer by alamar for How does db4o instantiate objects ? alamar 2009-05-26T10:49:35Z 2009-05-26T10:49:35Z <p>It uses sun's (or your other jvm's) special api to instantiate objects without checking access and running constructors.</p> <p>The bug you're having is most likely due to the fact that no constructors have been run, including implicit ones which set up default values on fields.</p> http://stackoverflow.com/questions/910037/how-does-db4o-instantiate-objects/910086#910086 1 Answer by Goran for How does db4o instantiate objects ? Goran 2009-05-26T10:52:43Z 2009-05-26T10:52:43Z <p>Hi!</p> <p>Db4o is open source so you might take a look at the source. The basic idea is the use of <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/TypeHandlers" rel="nofollow">type handlers</a> which enable serialization and deserialization of objects. There's a <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation%5FStrategies/Typehandlers/Custom%5FTypehandler%5FExample" rel="nofollow">simple example</a> provider for advanced users requiring a custom type handler. <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Object%5FLifecycle/Object%5FConstruction/Creating%5FObjects" rel="nofollow">Object construction</a> can use constructors or bypass constructor if no suitable constructor exists. The mentioned constructor bug can be prevented by using configuration settings which instructs db4o to call constructors anyway.</p> <p>You may wish to post this question on db4o <a href="http://developer.db4o.com/forums/default.aspx" rel="nofollow">forums</a> to get a more detailed explanation from the developers.</p> <p>Goran</p>