Serialization
-
Core Java
Concepts of Serialization
With all this talk about why Optional isn’t serializable and what to do about it (coming up soon), let’s have…
Read More » -
Core Java
Serialization Proxy Pattern example
There are books, which change your life immensely. One of such books is “Effective Java” by Joshua Bloch. Below you…
Read More » -
Core Java
Why use SerialVersionUID inside Serializable class in Java
Serialization and SerialVersionUID is always remains a puzzle for many Java developers. I often see questions like what is this…
Read More » -
Core Java
Externalizable in java
Before understanding Externalizable interface, you need to have idea about Serialization.You can read more about Serialization at Serialization in java.…
Read More » -
Core Java
Serializing Java Objects with Non-Serializable Attributes
There are multiple reasons one might want to use custom serialization instead of relying on Java’s default serialization. One of…
Read More » -
Core Java
ObjectStreamClass: Peeking at a Java Object’s Serialization
ObjectStreamClass can be a useful class to analyze the serialization characteristics of a serialized class loaded in the JVM. This…
Read More » -
Core Java
Lambda, will it serialize?
So I have been ponder an enhancement required on the Tyrus project that would allow a user to broadcast to…
Read More » -
Core Java
Using serialization to find dirty fields in an object
Say you are developing a framework to auto-save objects into a database. You need to detect changes made between two…
Read More » -
Core Java
Speed Up with Fast Java and File Serialization
Since the first version of Java, day-by-day many developers have been trying to achieve at least as good of performance…
Read More »