Next question , How to reflect the table in the activiti in to H2 database ?
What are the change I need to do ?
I am using activiti-5.17.0 and H2 Version 1.4.185 (2015-01-16) (Platform-Independent Zip),The changes I made in the file are are as follows.
1) db.properties (Change's made in the activiti-explorer\WEB-INF\classes\db.properties as below )
db=h2
jdbc.driver=org.h2.Driver
jdbc.url=jdbc:h2:tcp://localhost/~/activiti
jdbc.username=sa
jdbc.password=
2) AS there no activiti-standalone-context.xml file , becoz I am activiti-5.17.0 which come with activiti-custom-context.xml. I need to make the changes in the activiti-explorer\WEB-INF\classes\activiti-custom-context.xml, becoz to configure the activiti to H2 standalone database . The changes are as follows.
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="org.h2.Driver" />
<property name="url" value="jdbc:h2:tcp://localhost/~/activiti" />
<property name="username" value="sa" />
<property name="password" value="" />
<property name="defaultAutoCommit" value="false" />
</bean>
I did the changes in the both file , and created the war file and placed in the C:\apache-tomcat-7.0.59\webapps. when I started the tomcat server I am getting error . I have attached the tomcat server log error and screen shot of the activiti , I am running H2 database also mean while before running tomcat server. Could you please help on the issue ? Becoz I am not able to find the solution , I am working from past couple of weeks , But I am not able Configure Activiti Explorer for the H2 Database.Please Help on this issue