1
JavaIntermediate#interface#java8
transient only affects serialization, marking a field to be skipped when the object is serialized. It has no effect on normal execution, cloning, or reflection outside the serialization mechanism.
class Session implements Serializable {
transient String tempToken; // excluded from .ser file, null after deserialization
String userId; // included
}