低日志记录级别阻止关闭挂钩正确 运行

Low logging level preventing shutdown hook to run properly

我正在使用 MariaDb4j 库进行集成测试,它以这种方式注册了一个关闭挂钩:

    protected void cleanupOnExit() {
    String threadName = "Shutdown Hook Deletion Thread for Temporary DB " + dataDir.toString();
    final DB db = this;
    Runtime.getRuntime().addShutdownHook(new Thread(threadName) {

        @Override
        public void run() {
            // ManagedProcess DestroyOnShutdown ProcessDestroyer does
            // something similar, but it shouldn't hurt to better be save
            // than sorry and do it again ourselves here as well.
            try {
                // Shut up and don't log if it was already stop() before
                if (mysqldProcess != null && mysqldProcess.isAlive()) {
                    logger.info("cleanupOnExit() ShutdownHook now stopping database");
                    db.stop();
                }
            } catch (ManagedProcessException e) {
                logger.warn("cleanupOnExit() ShutdownHook: An error occurred while stopping the database", e);
            }

            if (dataDir.exists() && Util.isTemporaryDirectory(dataDir.getAbsolutePath())) {
                logger.info("cleanupOnExit() ShutdownHook quietly deleting temporary DB data directory: " + dataDir);
                FileUtils.deleteQuietly(dataDir);
            }
            if (baseDir.exists() && Util.isTemporaryDirectory(baseDir.getAbsolutePath())) {
                logger.info("cleanupOnExit() ShutdownHook quietly deleting temporary DB base directory: " + baseDir);
                FileUtils.deleteQuietly(baseDir);
            }
        }
    });
}

这工作正常。 但是后来我添加了 Logback 并创建了一个 Console appender。

    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
      <encoder>
          <Pattern>${defaultPattern}</Pattern>
      </encoder>
  </appender>

  <root level="DEBUG">
      <appender-ref ref="STDOUT" />
  </root>

如果我将日志记录级别设置为 WARN 或 ERROR,它仍然可以正常工作,但是当我将其设置为 INFO 或更低级别时,我会收到此异常:

Exception: java.lang.IllegalStateException thrown from the UncaughtExceptionHandler in thread "Shutdown Hook Deletion Thread for Temporary DB /var/folders/t5/lr8ytf257hb9_649cjp9hkn40000gn/T/MariaDB4j/data/3306"

"Shutdown Hook Deletion Thread for Temporary DB... "是上面第一段代码注册的线程名

结果是我剩下一个mysqld进程运行ning。这会阻止测试再次 运行,因为 MariaDB4j 抱怨它并且不会启动新数据库。

一旦我终止了 mysqld 进程,我就可以再次 运行 我的测试,但是同样的事情发生了。

我认为这是一个 JVM 问题。我看不出日志记录级别如何阻止关闭挂钩正常工作。

我在集成测试中使用 MariaDB4j。当我使用 IntelliJ 或 Eclipse 运行 它们时,它不会出现此错误。我只有在使用 gradle(作为构建任务的一部分)运行 时才得到它。

可能是什么原因造成的,如何解决?

我有类似的问题。它是由 Gradle 问题引起的,该问题描述为 there

将Gradle降级到3.2版本或升级到3.5版本即可解决