I added flowable dependency to my spring boot project.
pom.xml
org.flowabl to Flowable-spring-boot-starter 6.4.2I don’t encounter any problems when I use h2 or mssql as database. but when I use postgress I get errors when creating tables.
Properties:
server.port=8090
spring.datasource.url=jdbc:postgresql://localhost:5432/test
spring.datasource.username=test
spring.datasource.password=test
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto = update
spring.jpa.show-sql = true
Errors:
2019-10-22 16:59:09.986 ERROR 9864 — [ restartedMain] o.f.i.s.i.d.IdentityLinkDbSchemaManager : problem during schema create, statement create index ACT_IDX_IDENT_LNK_USER on ACT_RU_IDENTITYLINK(USER_ID_)
created tables:
I’m starting to use flowable new. how can I solve this problem?
thanks for helping.