Here's the scenario:
Currently we are working on running an application in a non-clustered environment. But right now we need to have an existing application be able to be deployed in a clustered weblogic environment.
This is a JSF based application and contains many managed beans. Now the problem is we do not have any clustered environment set up yet and is due to arrived in 3 weeks time.
In a weblogic cluster, I believe we are bound to encounter this problem
java.io.NotSerializableException:
My question is, is there a way to find out which among my existing classes would fail in a clustered environment without having it deployed in a clustered environment.
I am not sure if there is a way to test if all member variables of a class is serializable so that it wont fail in a clustered environment.