This content has been marked as final.
Show 2 replies
-
1. Re: StackOverflow in my datatypes
clebert.suconic Aug 1, 2006 9:12 AM (in response to issahar)Both JBoss and Java Serialization uses a lot of recursivity.
Your class has probably a very deep object graph. You probably have relationships between your objects, and every single object is a new object. (what is forcing the deep stack trace).
If you have multiple objects with the same ID/PK, you should cache them trying to diminish the number of instances in your graph. -
2. Re: StackOverflow in my datatypes
clebert.suconic Aug 1, 2006 7:23 PM (in response to issahar)Another way to address this is by increasing your JVM's stack size (-Xss)
That would give you more room for recursive calls