CMMN in Spring Boot Starter

Hey there,

is there anything to consider while planning to use Camunda SpringBoot Starter for a CaseManagement Application ?
My first steps are creating a org.camunda.bpm.engine.exception.cmmn.CaseDefinitionNotFoundException: no deployed case definition found with id ‘shipment’: caseDefinition is null

And I can not find any informations what that could possibly be.

I didn’t really check this so far, but there is no reason why cmmn files should not be deployed the same way as bpmn or dmn … could you share your example so I can investigate further?

Thank you, @jangalinski for your answer.
I used the shipment.cmmn (2.7 KB)

In Java I do use

@Autowired
private CaseService caseService;
// ...
caseService.createCaseInstanceById("shipment");

and a got a
org.camunda.bpm.engine.exception.cmmn.CaseDefinitionNotFoundException: no deployed case definition found with id 'shipment': caseDefinition is null

I tried to change the ID’s and also used other examples - but it won’t work.
Thank you for your help,

I did found my false:
have to use
createCaseInstanceByKey
instead of
createCaseInstanceById

Sorry for that

No prob, glad you could solve it … if you feel like providing a small example to the example collection so we are not longer blank on cmmn … go ahead!