Could not parse Mybatis configuration file

While trying to initialize the flowable standalone engine, I got the following exception.
The version is 6.2.1, what could be the reason?

org.flowable.engine.common.api.FlowableException: Could not parse Mybatis configuration file
at org.flowable.engine.cfg.AbstractEngineConfigurator.registerCustomMybatisMappings(AbstractEngineConfigurator.java:109)
at org.flowable.engine.cfg.AbstractEngineConfigurator.beforeInit(AbstractEngineConfigurator.java:52)
at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.configuratorsBeforeInit(ProcessEngineConfigurationImpl.java:1424)
at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.init(ProcessEngineConfigurationImpl.java:856)
at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.buildProcessEngine(ProcessEngineConfigurationImpl.java:832)

Could you paste the code you use to boot up the engine? This shouldn’t happen.

This is just a simple code within my java class

    ProcessEngineConfiguration cfg =
        new StandaloneProcessEngineConfiguration().setDataSourceJndiName("jdbc/EZWFDS")
        .setDatabaseSchemaUpdate(ProcessEngineConfiguration.DB_SCHEMA_UPDATE_TRUE);

    ProcessEngine processEngine = cfg.buildProcessEngine();

any updates on this? @nomadus @joram

This is a post from 2018. What’s the reason on bumping it? Do you have the same problem?