hot questions tagged db4o+reflection - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:11:49Zhttp://stackoverflow.com/feeds/tag?tagnames=db4o%2breflection&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/910037/how-does-db4o-instantiate-objects3How does db4o instantiate objects ?lbownik2009-05-26T10:36:57Z2009-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/762459/how-to-disable-java-security-manager1How to disable Java security manager?Pawel Piatkowski2009-04-17T22:40:34Z2009-04-21T05:15:08Z
<p>Is there any way to completely disable Java security manager? <br/></p>
<p>I'm experimenting with source code of db4o. It uses reflection to persist objects and it seems that security manager doesn't allow reflection to read and write private or protected fields.</p>
<p>My code:</p>
<pre><code>public static void main(String[] args) throws IOException {
System.out.println("start");
new File( DB_FILE_NAME ).delete();
ObjectContainer container = Db4o.openFile( DB_FILE_NAME );
String ob = new String( "test" );
container.store( ob );
ObjectSet result = container.queryByExample( String.class );
System.out.println( "retrieved (" + result.size() + "):" );
while( result.hasNext() ) {
System.out.println( result.next() );
}
container.close();
System.out.println("finish");
}
</code></pre>
<p>Output:</p>
<pre>
start
[db4o 7.4.68.12069 2009-04-18 00:21:30]
AccessibleObject#setAccessible() is not available. Private fields can not be stored.
retrieved (0):
finish
</pre>
<p><br/>
<a href="http://developer.db4o.com/forums/permalink/10482/10482/ShowThread.aspx" rel="nofollow"> This thread </a> suggests modifying java.policy file to allow reflection but it doesn't seem to work for me.</p>
<p>I'm starting JVM with arguments<br />
<code>-Djava.security.manager -Djava.security.policy==/home/pablo/.java.policy</code> <br/>
so specified policy file will be the only policy file used</p>
<p>The file looks like this:</p>
<pre>
grant {
permission java.security.AllPermission;
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
};
</pre>
<p>I spent last 3 hrs on this and don't have any ideas how to make this work.
Any help appreciated.</p>