Hi, I have this springboot application where I store and retrieve complex objects in geode (...array lists within array lists...). I serialize the objects with DataSerializable and DataSerializer and use compression (the default snappy compressor). It all works fine.
But when I try to export the data I get: java.io.IOException: org.apache.geode.cache.execute.FunctionException: org.apache.geode.SerializationException: A ClassNotFoundException was thrown while trying to deserialize cached value. I packed all the domain classes in a jar and deployed the jar on the cluster (all classes have the toData and fromData methods) I still get the exception above. What am I doing wrong? Claudiu Balciza