Hi
I want Activiti to use my own H2 Database instead of the default in memory one.
I installed H2 onto my local machine and made a new database called "jdbc:h2:tcp://localhost/~/activiti".
After that I editet the db.properties file in WEB-INF, so they looked like this :
db=h2
jdbc.driver=org.h2.Driver
jdbc.url=jdbc:h2:tcp://localhost/~/activiti
jdbc.username=sa
jdbc.password=
After that I shutdown and restarted Tomcat and H2 and tried to access my Activiti Explorer but Tomcat is now giving me the 404 error "The requested resource is not available." .
I can't really find a solution to this, does anybody know a possible fix for this?
Regards