flowable6.5启动HikariDataSource默认连接哪个数据库
时间: 2024-01-02 18:04:38 浏览: 94
Flowable6。5中文用户手册
Flowable 6.5 启动 HikariDataSource 默认连接 H2 数据库。这是因为在 Flowable 的默认配置文件中,使用了 H2 数据库的默认配置。
如果你想使用其他数据库,你需要在配置文件中修改相关配置信息,例如修改 `spring.datasource.url`、`spring.datasource.username`、`spring.datasource.password`、`spring.datasource.driver-class-name` 等属性,来指定使用的数据库类型和连接信息。
另外,Flowable 还提供了许多其他的配置选项,可以通过修改配置文件来进行配置。例如,你可以设置数据库的连接池大小、事务管理器类型、数据源类型等等。更多关于 Flowable 数据库配置的信息可以参考官方文档:https://www.flowable.com/open-source/docs/userguide-ch13-DatabaseConfiguration.html。
阅读全文