本文整理了Java中liquibase.Liquibase.changeLogSync()
方法的一些代码示例,展示了Liquibase.changeLogSync()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Liquibase.changeLogSync()
方法的具体详情如下:
包路径:liquibase.Liquibase
类名称:Liquibase
方法名:changeLogSync
暂无
代码示例来源:origin: dropwizard/dropwizard
@Override
public void run(Namespace namespace,
Liquibase liquibase) throws Exception {
final String context = getContext(namespace);
if (namespace.getBoolean("all")) {
if (namespace.getBoolean("dry-run")) {
liquibase.changeLogSync(context, new OutputStreamWriter(printStream, StandardCharsets.UTF_8));
} else {
liquibase.changeLogSync(context);
}
} else {
if (namespace.getBoolean("dry-run")) {
liquibase.markNextChangeSetRan(context, new OutputStreamWriter(printStream, StandardCharsets.UTF_8));
} else {
liquibase.markNextChangeSetRan(context);
}
}
}
代码示例来源:origin: org.liquibase/liquibase-maven-plugin
@Override
protected void performLiquibaseTask(Liquibase liquibase)
throws LiquibaseException {
liquibase.changeLogSync(new Contexts(contexts), new LabelExpression(labels), outputWriter);
}
代码示例来源:origin: org.liquibase/liquibase-maven-plugin
@Override
protected void performLiquibaseTask(Liquibase liquibase)
throws LiquibaseException {
liquibase.changeLogSync(new Contexts(contexts), new LabelExpression(labels));
}
代码示例来源:origin: com.expanset.utils/utils-dbmigration
@Override
protected void doComandInternal(CommandLine commandLine, Liquibase liquidbase)
throws Exception {
final String context = commandLine.getOptionValue(CONTEXT_PROPERTY, null);
final boolean printScriptOnly = commandLine.hasOption(PRINT_SCRIPT_ONLY_PROPERTY);
final boolean onlyNext = commandLine.hasOption(ONLY_NEXT_PROPERTY);
if(printScriptOnly) {
if(onlyNext) {
liquidbase.changeLogSync(context, dbMaintenance.createConsoleOutput());
} else {
liquidbase.markNextChangeSetRan(context, dbMaintenance.createConsoleOutput());
}
} else {
if(onlyNext) {
liquidbase.changeLogSync(context);
} else {
liquidbase.markNextChangeSetRan(context);
}
}
}
}
代码示例来源:origin: io.dropwizard/dropwizard-migrations
@Override
public void run(Namespace namespace,
Liquibase liquibase) throws Exception {
final String context = getContext(namespace);
if (namespace.getBoolean("all")) {
if (namespace.getBoolean("dry-run")) {
liquibase.changeLogSync(context, new OutputStreamWriter(printStream, StandardCharsets.UTF_8));
} else {
liquibase.changeLogSync(context);
}
} else {
if (namespace.getBoolean("dry-run")) {
liquibase.markNextChangeSetRan(context, new OutputStreamWriter(printStream, StandardCharsets.UTF_8));
} else {
liquibase.markNextChangeSetRan(context);
}
}
}
代码示例来源:origin: com.peterphi.std.guice/stdlib-guice-liquibase
case MARK_UPDATED:
liquibase.changeLogSync(new Contexts(contexts), new LabelExpression(labels));
return;
case GENERATE_CHANGELOG:
内容来源于网络,如有侵权,请联系作者删除!