Hi,
My requirement is to have custom serialization strategy for the complex process variables because it is not always feasible to use java serialization. Also XML and JSON serialization can not be used since the process variable is a domain model object and needs a proper serialization in RDBMS. I was trying to use the latest Camunda 7.4.0-alpha1 and configure the custom Java Object Value serializer as specified in
http://docs.camunda.org/manual/latest/user-guide/process-engine/variables/ (Object Value Serialization section), but I am not sure how to provide/configure the Custom Serializer to Camunda engine.
When I execute the process I get and exception
org.camunda.bpm.engine.ProcessEngineException: Cannot find serializer for value 'ObjectValue [value=org.camunda.bpm.unittest.CustomerData@2ab9a94, isDeserialized=true, serializationDataFormat=application/x-java-serialized-object, objectTypeName=null, serializedValue=null]'.
I understood from the documentation that we can specify the XML and JSON serialization for Camunda Spin but not sure how to specify Java Object Value serializer.
Thanks
Vaibhav