如何在Java代码中使用SchemaCrawler的脱机快照

时间:2016-10-26 08:45:20

标签: java schemacrawler

我认为标题解释了这一点:有没有一种很好的方法来使用SchemaCrawler创建和加载数据库模式的脱机快照而不使用命令行?如果是,请提供一些示例代码/链接吗?如果没有,使用命令行选项的一些示例java代码也会有所帮助(我没有太多经验)!

感谢您提供任何帮助!

PS:我设法使用以下代码创建离线快照:

    final SchemaCrawlerOptions options = new SchemaCrawlerOptions();
    // Set what details are required in the schema - this affects the
    // time taken to crawl the schema
    options.setSchemaInfoLevel(SchemaInfoLevelBuilder.standard());
    options.setRoutineInclusionRule(new ExcludeAll());
    options.setSchemaInclusionRule(new RegularExpressionInclusionRule(/* some regex here*/));
    options.setTableInclusionRule(new RegularExpressionExclusionRule(/*some regex here*/));

    outputOptions.setCompressedOutputFile(Paths.get("./test_db_snapshot.xml"));
    final String command = "serialize";

    final Executable executable = new SchemaCrawlerExecutable(command);
    executable.setSchemaCrawlerOptions(options);
    executable.setOutputOptions(outputOptions);
    executable.execute(getConnection());

不知道如何连接到它。

1 个答案:

答案 0 :(得分:0)

您需要使用schemacrawler.tools.offline.OfflineSnapshotExecutableschemacrawler.tools.offline.jdbc.OfflineConnection来“连接”数据库快照。

请查看以下代码: OfflineSnapshotTest.offlineSnapshotExecutable()

和@ZidaneT,要加载离线快照,请使用LoadSnapshotTest.java

中的代码

Sualeh Fatehi,SchemaCrawler