Hi, I have created a basic flow, comprising of a start event, user task, service task and end event using xml in my workspace.
In user task there will be variable holding the decision.
Decision value is passed by rest call.
In the end, service task just prints the decision value in console.
So, everything works fine, now I thought of doing the same thing but in a different way, not using xml but by using flowabl-modeler.
So, I have to change the default database from h2 to postgresql, i know about the application side but not so sure about the flowable side.
I made the changes in flowable-default.properties file in
\apache-tomcat-9.0.21\webapps\flowable-modeler\WEB-INF\classes
I made below changes in aflowable-default.properties
application.properties:
DATABASE
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/flowablemodeler
spring.datasource.username=postgres
spring.datasource.password=
spring.datasource.hikari.connection-test-query=select 1
I get errors-> database âflowableâ does not exist, plus cannot load driver class: org.postgresql.Driver
Please help me on this!!!