What does the transient Keyword exactly mean? I have a Class attribute marked as transient:
public class NodeClassifier {
private transient HashMap<String, Node> nodeCache = new HashMap<>();
...
}
After storing and recovering an NodeClassifier Object into the HttpSession the Attribute still has the Value from previous Session.
Shouldn't it be empty?
The Environment is a plain Servlet running on Glassfish4.