Hi Waao,
Considering the date of your post, by now, I'm more than sure you must have solved the problem yourself but just to check if you followed my approach, here's how I went about it:
1) I downloaded the activiti-explorer war file (version 5.13)
2) Modified the content of the war file's WEB-INF\activiti-standalone-context.xml & WEB-INF\classes\db.properties so as to point to my H2 database URL
3) Deployed the file to Tomcat and on start-up of the server, the explorer fired up all proper and was pointing to my standalone H2 database.
Inside the activiti-standalone-context.xml, this was the XML snippet that I updated:
<code>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="org.h2.Driver"/>
<property name="url" value="MY_H2_URL" />
<property name="username" value="MY_H2_USER_NAME" />
<property name="password" value="MY_H2_PASSWORD" />
<property name="defaultAutoCommit" value="false" />
</bean>
</code>
The content inside db.properties was pretty straightforward to tinker with.
-
A M Bharath