06-23-2018 05:05 AM
Is there any property defined to enable enableSafeBpmnXml in activiti 6? I am using spring boot with activiti 6.
06-25-2018 07:47 AM
For spring boot implement ProcessEngineConfigurationConfigurer (need to also add @Configuration spring annotation on the implemented class). Then call setEnableSafeBpmnXml(true) on the processEngineConfiguration.
Your custom implementation should look like this:
public void configure(SpringProcessEngineConfiguration processEngineConfiguration) {
processEngineConfigurationsetEnableSafeBpmnXml(true);
}
Explore our Alfresco products with the links below. Use labels to filter content by product module.