Hi,
Flowable can not auto create db tables in Spring project.
Caused by: java.sql.SQLSyntaxErrorException: Table 'ztys_playground.act_ge_property' doesn't exist
This is my config code:
<bean id=“processEngineConfiguration” class=“org.flowable.spring.SpringProcessEngineConfiguration”>
<property name=“dataSource” ref=“dataSource”/>
<property name=“transactionManager” ref=“transactionManager”/>
<property name=“databaseSchemaUpdate” value=“true”/>
</bean>
<bean id=“processEngine” class=“org.flowable.spring.ProcessEngineFactoryBean”>
<property name=“processEngineConfiguration” ref=“processEngineConfiguration”/>
</bean>