I have a large bean graph that I'm trying to serialize. Getting serialization exception (a non-specific one). Anyone have a class that will help locate the issue?
A:
Write one or more unit tests that serialize parts of the graph or the full graph. This will let you brak the problem into smaller pieces.
krosenvold
2009-03-09 18:10:52
+4
A:
From JDK6 you should be able to get extra information by setting the sun.io.serialization.extendedDebugInfo system property:
-Dsun.io.serialization.extendedDebugInfo=true
Tom Hawtin - tackline
2009-03-09 18:16:21