我开始了解Liquibase的概念。但我找不到有关LiquibaseProducer的更多信息。谁能告诉我什么是LiquibaseProducer以及为什么以及如何使用它?
提前致谢。
答案 0 :(得分:1)
根据source code,LiquibaseProducer
是:
/**
* The CDI Liquibase integration is a simple CDI extension that performs a
* Liquibase update when the CDI container boots.
*
*/
因此,如果您将此项目合并到项目中,那么只要您的应用程序启动,它就会
update
以确保数据库架构是
更新日志的最新版本,可能会运行任何新的更改
需要设置。