Hi all,
While using hibernate in my application I encounterd following problem.
As I went through tutorials, what I observed is to use hibernate for an object, that should have implemented Serializable interface. If not it will throw an exception saying cannot be serialized.
In one of the bean classes I'm using, one of the filed is an instance of another class and it's not serialized. more precisely that class is taken from an external jar, so that I cannot change it(cannot serialized).
so is there anything I can to to make it serialized and save it in the database?
thanks in advance....
|