the default serialization of Camunda uses standard Java object serialization. Hence objects are saved in machine readable bytes in the database. Of course that is often not practical. You can exchange the default serialization. You can find the instruction here.
I hope that is helpful have a good start into your week
Cheers
Nele
Do you have example to do the same. I have specified “defaultSerializationFormat” in Camunda-xfg.xml as “application/json” still it is saved as Java Object in Camunda database…
Following is my code where caseData is a Map
runtimeService.startProcessInstanceByKey(processDefKey, caseData);
Hi I am able to save object as json instead of. However, it still goes to the same BLOB column. Is there a way to store the same data in varchar column as opposed to going to BLOB column.