↧
How to Serialize Object to File and Read Back?
Object Serialization is a simple way to store the state of an object into an byte stream. This stream can stored into a file. The reverse is called Object De-Serialization, which is restoring the...
View ArticleWhat is Serialization?
Serialization is the process of converting an object instance with it child objects into a linear stream of bytes. In this way it stores the state of an object into a stream. This stream of bytes can...
View ArticleCannot Serialize the Session
At times in the application server logs we see this exception with the following details.<Could not deserialize session data. java.io.NotSerializableException: <package>.<className>...
View Article