This content has been marked as final.
Show 2 replies
-
1. Re: Strategy for supporting NonSerializable data
starksm64 Jan 9, 2007 2:31 PM (in response to dimitris)A custom jsr160 connector that allows for control of serialization of types that are not Serializable is the proper solution. The default implementation could use the jboss serialization capabilities.
The 1955 short term solution seems like the best immeadiate approach. -
2. Re: Strategy for supporting NonSerializable data
tom.elrod Jan 19, 2007 1:07 AM (in response to dimitris)JBoss Serialization will allow serialization of classes not implementing Serializable interface, but requires jdk 1.5 (no problem) and the class have a void constructor (which can be private). Don't know if this has changed, but might be too limiting?