Possible Duplicate:
Why does Java have transient variables?
The transient keyword will be used to prevent serialization of a particular variable. But why should we not to serialize the data? Is there any inner security?
The transient keyword will be used to prevent serialization of a particular variable. But why should we not to serialize the data? Is there any inner security? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Some classes are inherently not serializable, because they represent resources outside of the manage Java environment. For example a If you want to serialize some object that has a field of that type, then you'll have to mark those fields as transient. Another reason to use |
|||
|
|
|
Yes, it can be security related, but the reason can also be that the data in the field is derived from other fields, and there's no reason to send it in that case. Save bandwidth if you can :) |
|||
|
|
|
If you dont want to serialize any variable/field mark it as a transient. Bank balance, credit card details etc if we serialize then someone can deserialize it and use it. |
|||
|
|
|
Consider a class having user name and password as one of its field. Also consider you are passing this object in network after serialization and deserializing it some where else. In such scenerios transient will be helpful |
|||
|
|