在Windows计算机上为Derby Embedded数据库调用shutdown = true时,无法删除system directory

这是我面临的挑战的最小示例:

package derbytest;

import java.io.File;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 *
 * @author aelder
 */
public class DerbyTest {

    private static final String DRIVER = "org.apache.derby.jdbc.EmbeddedDriver";
    private static final String CONN_URL = "jdbc:derby:EmbeddedDBAudit";

    private static File derbySystemFolder;
    private static final String USER_HOME_DIR = System.getProperty("user.home", ".");

    public static Connection getConnection(boolean createDatabase) throws SQLException {
        return DriverManager.getConnection(CONN_URL + (createDatabase ? ";create=true" : ""));
    }

    public static void shutdownConnectionAndCleanup() {
        try {
            DriverManager.getConnection(CONN_URL + ";shutdown=true");
        } catch (SQLException ex) {
            if (!ex.getSQLState().equals("08006")) {
                ex.printStackTrace();
            }
        }

        deleteFolder(derbySystemFolder);
    }

    public static void deleteFolder(File folder) {
        File[] files = folder.listFiles();
        if (files != null) { //some JVMs return null for empty dirs
            for (File f : files) {
                if (f.isDirectory()) {
                    deleteFolder(f);
                } else {
                    f.delete();
                }
            }
        }
        folder.delete();
    }

    public static void setDerbyHome() {
        setDatabaseFile("");

        int index = 1;
        while (derbySystemFolder.exists()) {
            setDatabaseFile(String.valueOf(index++));
        }

        // Set the db system directory.
        System.setProperty("derby.system.home", derbySystemFolder.getAbsolutePath());
    }

    private static void setDatabaseFile(String auditFolderCount) {
        String databaseFilePATH = USER_HOME_DIR + File.separator + ".EmbeddedDBAudit" + auditFolderCount;

        derbySystemFolder = new File(databaseFilePATH);
        derbySystemFolder.deleteOnExit();
    }

    public static void initDerbyHomeAndDriver() {
        setDerbyHome();

        initDerbyDriverInstance();
    }

    public static void initDerbyDriverInstance() {
        try {
            Class.forName(DRIVER).newInstance();
        } catch (ClassNotFoundException | InstantiationException | IllegalAccessException ex) {
            Logger.getLogger(DerbyTest.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

    public static boolean tableAlreadyExists(SQLException e) {
        return e.getSQLState().equals("X0Y32");
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        try {
            initDerbyHomeAndDriver();
            getConnection(true);
            shutdownConnectionAndCleanup();
        } catch (SQLException ex) {
            Logger.getLogger(DerbyTest.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
}

我尝试使用外部库删除文件夹,例如apache的org.apache.commons.io.FileDeleteStrategy.FORCE.delete(file);import org.apache.commons.io.FileUtils.deleteDirectory(file);。即使关闭数据库后,derby系统似乎仍卡在文件上。

所需的行为:退出时删除system directory

编辑:

Windows进程资源管理器显示关闭数据库连接后,derby.log仍处于打开状态:

java - 无法删除嵌入式数据库的Derby系统目录-LMLPHP

最佳答案

假设是Derby代码本身未能关闭此文件,对我来说这似乎是个错误。

关闭引擎后,Derby显然应该关闭其日志并释放对其的所有引用。

如果可以使用https://www.eclipse.org/mat/之类的工具,则可以找到哪个线程(甚至哪个堆栈帧?)已将该引用分配给derby.log,但未能释放该引用。

如果您可以将这种行为封装在一个演示该行为的小型测试程序中,则建议您记录一个针对Derby的错误(http://db.apache.org/derby/DerbyBugGuidelines.html),以便开发人员可以自己重现该错误并找出解决方法。

同时,您可以通过禁用derby.log文件或将derby.log文件重新定位到另一个目录来解决此问题。

显然这不是解决办法,但可能是行为上的改进,以致该缺陷不再阻碍您的工作了?以下是有关如何控制derby.log文件的一些文档:https://builds.apache.org/job/Derby-docs/lastSuccessfulBuild/artifact/trunk/out/devguide/cdevdvlp25889.html

关于java - 无法删除嵌入式数据库的Derby系统目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47582819/

10-14 10:45