Hi All,
I use camunda 7.15 version with StandaloneProcessEngineConfiguration with oracle DB.
There, process engine is configured to manage transactions externally and database connection also will be closed externally by my application.
Process engine will be initiated with application server startup.
processEngineConfiguration.setTransactionsExternallyManaged(true);
TransactionFactory tf = new ManagedTransactionFactory();
Properties props = new Properties();
props.put("closeConnection", Boolean.FALSE.toString());
tf.setProperties(props);
processEngineConfiguration.setTransactionFactory(tf);
After few minutes of starting the application, I can see uncommitted changes on table ACT_RU_METER_LOG without performing any Camunda related activity by myself.
How can we commit or rollback the database changes internally done by Camunda ?
Thanks in Advance!