本文整理了Java中liquibase.Liquibase.forceReleaseLocks()
方法的一些代码示例,展示了Liquibase.forceReleaseLocks()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Liquibase.forceReleaseLocks()
方法的具体详情如下:
包路径:liquibase.Liquibase
类名称:Liquibase
方法名:forceReleaseLocks
暂无
代码示例来源:origin: dropwizard/dropwizard
@Override
public void run(Namespace namespace, Liquibase liquibase) throws Exception {
final boolean list = firstNonNull(namespace.getBoolean("list"), false);
final boolean release = firstNonNull(namespace.getBoolean("release"), false);
if (list == release) {
throw new IllegalArgumentException("Must specify either --list or --force-release");
} else if (list) {
liquibase.reportLocks(printStream);
} else {
liquibase.forceReleaseLocks();
}
}
代码示例来源:origin: org.liquibase/liquibase-maven-plugin
@Override
protected void performLiquibaseTask(Liquibase liquibase)
throws LiquibaseException {
liquibase.forceReleaseLocks();
}
代码示例来源:origin: com.expanset.utils/utils-dbmigration
@Override
protected void doComandInternal(CommandLine commandLine, Liquibase liquidbase)
throws Exception {
liquidbase.forceReleaseLocks();
}
}
代码示例来源:origin: vmware/admiral
private static void releaseLockOnTimeout(Liquibase liquibase)
throws LiquibaseException, UnsupportedEncodingException {
if (LOCK_RELEASE_TIMEOUT_MINUTES <= 0) {
return;
}
for (DatabaseChangeLogLock lock : liquibase.listLocks()) {
long elapsedMinutes = TimeUnit.MILLISECONDS
.toMinutes(System.currentTimeMillis() - lock.getLockGranted().getTime());
if (elapsedMinutes >= LOCK_RELEASE_TIMEOUT_MINUTES) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
liquibase.reportLocks(new PrintStream(os));
logger.warning(String.format("Releasing liquibase locks after %d minutes: %s",
elapsedMinutes, os.toString(Utils.CHARSET)));
liquibase.forceReleaseLocks();
break;
}
}
}
代码示例来源:origin: io.dropwizard/dropwizard-migrations
@Override
public void run(Namespace namespace, Liquibase liquibase) throws Exception {
final boolean list = firstNonNull(namespace.getBoolean("list"), false);
final boolean release = firstNonNull(namespace.getBoolean("release"), false);
if (list == release) {
throw new IllegalArgumentException("Must specify either --list or --force-release");
} else if (list) {
liquibase.reportLocks(printStream);
} else {
liquibase.forceReleaseLocks();
}
}
}
代码示例来源:origin: stackoverflow.com
void diff(Connection referenceConnection, Connection targetConnection) throws LiquibaseException, IOException, ParserConfigurationException {
Liquibase liquibase = null;
try {
Database referenceDatabase = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(referenceConnection));
Database targetDatabase = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(targetConnection));
liquibase = new Liquibase("", new FileSystemResourceAccessor(), referenceDatabase);
DiffResult diffResult = liquibase.diff(referenceDatabase, targetDatabase, new CompareControl());
new DiffToChangeLog(diffResult, new DiffOutputControl()).print(System.out);
} finally {
if (liquibase != null) {
liquibase.forceReleaseLocks();
}
}
}
内容来源于网络,如有侵权,请联系作者删除!