Hi everyone,
I have query regarding form engine. I have to attach a form to a task in my process. I am trying to achieve this programmatically . For creating form engine i tried following two ways :
1.) FormEngine formEngine = formEngineConfiguration.getFormEngineConfiguration().buildFormEngine();
2.) FormEngine formEngine=formEngineConfiguration.buildFormEngine();
None of above give compile time error, but when i execute my code, i get an error which i am not able to understand and rectify.Tried adding liquibase-core-3.5.3.jar and liquibase-maven-plugin-3.5.3.jar . Still getting error. Could anyone help. Thanks in advance . Adding the error that i see :
INFO 2/11/17 1:58 PM: liquibase: Successfully acquired change log lock
INFO 2/11/17 1:58 PM: liquibase: Successfully released change log lock
Exception in thread “main” org.flowable.engine.common.api.FlowableException: Error initialising form data schema
at org.flowable.form.engine.FormEngineConfiguration.initDbSchema(FormEngineConfiguration.java:305)
at org.flowable.form.engine.FormEngineConfiguration.init(FormEngineConfiguration.java:191)
at org.flowable.form.engine.FormEngineConfiguration.buildFormEngine(FormEngineConfiguration.java:174)
at TestForm.main(TestForm.java:80)
Caused by: liquibase.exception.ChangeLogParseException: Error Reading Migration File: Found 2 files that match org/flowable/form/db/liquibase/flowable-form-db-changelog.xml
at liquibase.parser.core.xml.XMLChangeLogSAXParser.parseToNode(XMLChangeLogSAXParser.java:112)
at liquibase.parser.core.xml.AbstractChangeLogParser.parse(AbstractChangeLogParser.java:17)
at liquibase.Liquibase.getDatabaseChangeLog(Liquibase.java:229)
at liquibase.Liquibase.update(Liquibase.java:202)
at liquibase.Liquibase.update(Liquibase.java:192)
at liquibase.Liquibase.update(Liquibase.java:188)
at liquibase.Liquibase.update(Liquibase.java:181)
at org.flowable.form.engine.FormEngineConfiguration.initDbSchema(FormEngineConfiguration.java:299)
… 3 more
Caused by: java.io.IOException: Found 2 files that match org/flowable/form/db/liquibase/flowable-form-db-changelog.xml
at liquibase.util.StreamUtil.singleInputStream(StreamUtil.java:205)
at liquibase.parser.core.xml.XMLChangeLogSAXParser.parseToNode(XMLChangeLogSAXParser.java:93)
… 10 more