This section shows how to configure the DMN engine:

    Configure the DMN Engine using Java API

    Configure the DMN Engine using Spring XML

    Follow the to create a base camunda.cfg.xml XML configuration for the process engine.

    1. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    2. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    3. <bean id="processEngineConfiguration"
    4. class="org.camunda.bpm.engine.impl.cfg.StandaloneProcessEngineConfiguration">
    5. <property name="dmnEngineConfiguration">
    6. <bean class="org.camunda.bpm.dmn.engine.impl.DefaultDmnEngineConfiguration">
    7. <!-- e.g. set the default expression language for input expressions to `groovy` -->
    8. <property name="defaultInputExpressionExpressionLanguage" value="groovy" />
    9. </bean>
    10. </property>