Form engine not initialized error

Hi,

Because engines typically share the same database and transaction manager etc, we provide configurator classes to make this easy. There’s a FormEngineConfigurator (flowable-form-engine-configurator module) and SpringFormEngineConfigurator (flowable-form-spring-configurator module) class that do this. So you can do the following:

processEngineConfiguration.addConfigurator(new FormEngineConfigurator());

This will boot the form engine and make sure everything is properly configured and initialised.

Best regards,

Tijs