BPMN - Process list of objects using DMN

Hi,
I created a BPMN process model having service task which will create list of java object and pass to DMN node and want to process the list using the set of rules and send result of each object to next service task. Is it possible to process the list using DMN? I’m new to flowable so not sure what needs to be done. I’m using java spring boot to execute the model.
Thanks,
Jenny

Hi @jenny,

when you save java objects, they are typically stored as serializable. It’s better to store those either transient (in this case they are not persisted to the database) or as a jackson object node, then they will be stored as a JSON document in the database.

In general, in DMN you can evaluate expressions and with that you can also use the content out of your list. The question at the end comes down to what you want to process and what’s your expected result.

Valentin