vote up 0 vote down star

i am currently struggling with HTTP Session replication on tomcat with complex objects.

some objects implement Serializable but hold non-serializable members.

unfortunately, the stacktraces do not provide much useful info here by default.

there is a flag -XX:???? to enable verbose class names in the stacktrace when a NotSerializableException occurrs. this flag would help me a lot finding the source of the error. but i forgot its name

what is the name of the flag?

flag

1  
By session, do you mean a Servlet HttpSession? – McDowell Nov 2 at 10:29
yes. HttpSession must only contain serializable objects or else it won't persist restart and won't be able to be replicated to other tomcat nodes.. – Andreas Petersson Nov 2 at 11:39

3 Answers

vote up 0 vote down

I'm not sure that what you're asking for exists - check out Sun's list of VM options, whereby a grep for "seri" only turns up -XX:-UseSerialGC.

link|flag
vote up 0 vote down

I am not aware of such a flag, but I don't think more verbose stack traces will help.

The name of the class that is not serializable normally appears in the exception message, e.g. "java.io.NotSerializableException: com.mycompany.mypackage.Foo"

The stack trace shows what methods were executing at the time, usually something like:

at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)

But any extra information about those methods will not tell you what class caused the problem.

link|flag
vote up 4 vote down check

-Dsun.io.serialization.extendedDebugInfo=true

link|flag
I need to wait 2 days before i can mark this as accepted, due to SO rules. i found the answer at mfondo.blogspot.com/2007/10/… – Andreas Petersson Nov 2 at 18:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.