本文主要是介绍flowable项目报错:java.sql.SQLSyntaxErrorException: Table ‘psr_flowable_test.act_ge_property’ doesn’t exi,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错
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=truepassword: rootusername: rootdriver-class-name: com.mysql.cj.jdbc.Driver
如图位置:
这篇关于flowable项目报错:java.sql.SQLSyntaxErrorException: Table ‘psr_flowable_test.act_ge_property’ doesn’t exi的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!