报错
java.sql.SQLSyntaxErrorException: Table ‘psr_flowable_test.act_ge_property’ doesn’t exist
解决
比如在代码中配置:
configuration.setJdbcUrl("jdbc:mysql://localhost:3306/flowable_test?nullCatalogMeansCurrent=true");
或者在yml中配置
spring: datasource: url: jdbc:mysql://localhost:3306/flowable?useUnicode=true&characterEncoding=utf8&useSSL=false&nullCatalogMeansCurrent=true password: root username: root driver-class-name: com.mysql.cj.jdbc.Driver
如图位置: