I am getting the following error
org.springframework.orm.hibernate3.HibernateSystemException: could not deserialize; nested exception is org.hibernate.type.SerializationException: could not deserialize
All my classes implements serializable.
Acutally I am fetching one list from DB and using it’s value to fetch another result.
Got Solution :
In one of my POJO there was field whose dataType was Serializabel(as it was nvarchar in DB) so change it to byte[] and problem was solved.