I am trying to write message to a file using serialization.Message consists of two fields- date and TibrvMsg(TibrvMsg is a propriotory message by Tibco and this class is not serializable as per their documentation).So my custom message is: Message msg = new Message(TibrvMsg msg). Problem is though i m declaring Message Serializable, i m not able to serialize it as TibrvMsg is not serializable. So i get "java.io.NotSerializableException: com.tibco.tibrv.TibrvMsg" exception. How to oevrcome this problem?
|
|
Another approach is to use a serialization proxy. Serialization proxy is a different class altogether than the object being serialized with the logical state of the object. The Object readResolve() method to write a proxy instead of this object and create an object by reading proxy. Some semi-pseudo code:
Additionally override readObject(ObjectInputStream) to throw an InvalidObjectException. The serialization proxy pattern also has certain security advantages over normal serialization. It also has a few disadvantages |
|||
|
|
|
You need to find a way to represent your TibrvMsg as a serializable object (maybe something like this, which transforms it into a Map). You can then override the following two methods to write this data to the output stream (or read it):
|
|||||||||||
|
|
What do you mean by "this class is not serializable as per their documentation"? Couldent you just extend their class and implement serializable? Its just a marker interface, so... |
|||||||||
|