Multi tenant schame based flowable with the springboot

Hi ,

Can anyone help me to configure Multi tenant schame based flowable with the springboot. It would be helpful if you provide us with the sample snippet.

Regards,
Raghu

You can find a basic unit test here: https://github.com/flowable/flowable-engine/blob/9af12c0df51ef9cb29e1cd05a1fb015f1a80a021/modules/flowable-engine/src/test/java/org/flowable/engine/test/cfg/multitenant/MultiTenantProcessEngineTest.java

When using Spring Boot, you shouldn’t use the flowable starters, they have no support for a multi-schema engine. You’d need to add the Flowable dependency (e.g. flowable-engine) to the pom.xml yourself and create the engine configuration and engine as beans.

1 Like