11-24-2016 10:19 AM
12-13-2016 04:00 AM
Hi,
Looks like your processEngine itself is not created. Try with the below code by replacing Driver, URL, Username and Password appropriate to your environment.
ProcessEngine processEngineInstance = ProcessEngineConfiguration
.createStandaloneProcessEngineConfiguration()
.setJdbcDriver(<DRIVER>)
.setJdbcUrl(<URL>)
.setJdbcPassword(<PASSWORD>)
.setJdbcUsername(<USERNAME>)
.buildProcessEngine();
11-24-2016 03:28 PM
11-24-2016 03:57 PM
11-24-2016 04:20 PM
11-28-2016 10:26 AM
12-13-2016 04:17 AM
Hi Ara,
Sorry for the late reply, but only now I've received the email notification (??).
It looks like the ProcessEngine class is not in your classpath, that is why you receive "NoClassDefFoundError".
See: NoClassDefFoundError Javadoc
You must make sure that:
1. you run mvn clean install on your project, so that the activiti-engine jar is in your maven repo.
2. make sure that the activiti-engine jar is in your projects classpath before running the main class
br,
Vlad
12-15-2016 07:41 AM
Hey Vlad - We had email notifications turned off during the migration. You shouldn't experience the delays in emails again!
12-13-2016 04:00 AM
Hi,
Looks like your processEngine itself is not created. Try with the below code by replacing Driver, URL, Username and Password appropriate to your environment.
ProcessEngine processEngineInstance = ProcessEngineConfiguration
.createStandaloneProcessEngineConfiguration()
.setJdbcDriver(<DRIVER>)
.setJdbcUrl(<URL>)
.setJdbcPassword(<PASSWORD>)
.setJdbcUsername(<USERNAME>)
.buildProcessEngine();
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.