我正在尝试基于 Hibernate 提供的 SchemaUpdate 类编写一个 Liquibase 变更集生成器。目标是获得 Hibernate 更新脚本的好处以及开发人员根据需要调整它们的可能性。完成后,SQL 将被集成到 Liquibase SQL 文件中。
一开始这似乎很简单,只需实例化一个 SchemaUpdate 类并启动 execute 方法。
但是代码可以做任何事情。我正在尝试从 JPA persistence.xml 文件初始化 Hibernate,我认为这就是问题所在。
目前我已经手动设置了 mysql 属性,但是 Hibernate 没有找到实体类。
从 JPA 配置中获取配置(SchemaUpdate 类需要)的最佳方法是什么?
我已经搜索了一段时间的解决方案,但是它们都使用 EJB3Configuration 类,该类在 Hibernate 4.3 中不再存在。
谢谢帮助!
例如,我正在做这样的事情:
final File persistenceFile = new File("src/main/resources/META-INF/persistence.xml");
final Configuration cfg = new Configuration();
if ( ! persistenceFile.exists()) {
throw new FileNotFoundException(persistenceFile.getAbsolutePath() + " not found");
}
final List<String> jpaConfiguration = Files.readLines(persistenceFile, Charsets.UTF_8);
for (final String line : jpaConfiguration) {
if (line.contains("property")) {
final String[] props = line.split("\\\"");
cfg.setProperty(props[1], props[3]);
}
}
final SchemaUpdate updater = new SchemaUpdate(cfg);
updater.setOutputFile("target/script.sql");
updater.execute(true, false);