Reputation: 2308
I read the answer for alternatives for java serialization given below.
Which is the best alternative for Java Serialization?
I am in doubt that are these options truly independent of java serialization or are they built on java serialization. If not then how do they work internally?
Upvotes: 3
Views: 129
Reputation: 220842
This is a very open question as you're putting various APIs / serialisation techniques into the same category. I'll only respond to the JDBC part, in case of which obviously none of the drivers use Java serialisation because the relevant database communication protocols are defined by the databases independently of any client technology (Java, PHP, .NET, Python, etc...).
It would be safe to assume that most similar API implementations work in a similar fashion behind the scenes, because Java serialisation is inherently Java-specific, and it is usually not a good idea to make any protocol (regardless of the purpose) language-specific.
Upvotes: 2