I have a variable in a class that is transient because it is not serialize, only when the tomcat is org.apache.catalina.core.StandardContext
reload this same variable is null, don't know why ...
public class bean extends UnicastRemoteObject implements clientInterface{
(...)
private transient OAuthService service;
(...)
}
when it appears in netbeans
in Apache tomcat log org.apache.catalina.core.StandardContext
reload then this variable is null ....
Can someone tell me why?