liquibase.Liquibase.reportLocks()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中liquibase.Liquibase.reportLocks()方法的一些代码示例,展示了Liquibase.reportLocks()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Liquibase.reportLocks()方法的具体详情如下:
包路径:liquibase.Liquibase
类名称:Liquibase
方法名:reportLocks

Liquibase.reportLocks介绍

暂无

代码示例

代码示例来源: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: 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();
    }
  }
}

相关文章