0

情况:我有一个静态数据库类,使用 HSQLDB,我也想在其中使用 Logging。

我设置了记录器,设置了所有语句,但是使用特定方法后,记录器似乎不再工作了。没有抛出异常,只是似乎已经死了。

这是记录器类:

public class GLogger {

    private static GFormatter   formatterHTML;
    private static FileHandler  fileHTML;
    private static boolean      isReady = false;

public static void setup() throws IOException {
    Logger logger = Logger.getLogger("");
    fileHTML = new FileHandler("conf/logging.html");
    formatterHTML = new GFormatter();
    fileHTML.setFormatter(formatterHTML);
    logger.addHandler(fileHTML);
    isReady = true;
}

public static boolean isReady() {
    return isReady;
}
}

这是(部分)数据库类:

public class Database {

private static final Logger LOG = Logger.getLogger(Database.class.getName());
/**
 * The database server class
 */
private static Server       hsqlServer;

/**
 * The connection class. Used to manage request to the database.
 */
private static Connection   connection;

/**
 * The name of the database
 */
private static String       dbName;

public Database(String databaseName, String fileName) {

    LOG.setLevel(Level.FINEST);

    hsqlServer = null;
    connection = null;

    dbName = databaseName;

    // ###### LOGGER ######
    LOG.finest("Creating a new database server class");
    // ####################
    hsqlServer = new Server();

    hsqlServer.setLogWriter(null);
    hsqlServer.setSilent(true);

    hsqlServer.setDatabaseName(0, dbName);
    hsqlServer.setDatabasePath(0, "file:db/" + fileName);
}

/**
 * Start the new database class.
 */
public static void start() {

    // ###### LOGGER ######
    LOG.finest("Starting a new database class");
    // ####################
    hsqlServer.start();
    connection = null;
}

/**
 * Start the new connection to the specified database, using the default username "sa" e no password
 */
public static void connect() {
    try {
        // ###### LOGGER ######
        LOG.finest("Getting a connection to the newly started database");
        // ####################
        Class.forName("org.hsqldb.jdbcDriver");
        // Default user of the HSQLDB is 'sa' with an empty password
        connection = DriverManager.getConnection("jdbc:hsqldb:hsql://localhost/garby", "sa", "");
    } catch (ClassNotFoundException e) {
        // ###### LOGGER ######
        LOG.severe("Impossible to connect to the database. ClassNotFound");
        // ####################
    } catch (SQLException e) {
        // ###### LOGGER ######
        LOG.finest("Impossible to connect to the database. " + e.getCause());
        // ####################
    }
}
// ... more other stuff, not important and then the main method:
public static void main(String[] args) {
    if (!GLogger.isReady()) {
        try {
            GLogger.setup();
        } catch (Exception e) {

        }
    }
    new Database("garby", "garbydb");
    Database.start();
    Database.connect();
    Database.tableStructureCreation();
    Database.populateFromFile("conf/populateServ.txt", "services");
    System.out.println(Database.listServices());
    Database.stop();
}

我删除了与我的问题无关的所有方法和其他操作。

如果我运行该类,一切正常(!!数据库添加了正确的结构和数据,用倒数第二行“system.out”验证)。不工作的东西应该是记录器。

如果我打开 html 文件(为简单起见,我省略了 htmlFormatter,这没有用,它只格式化日志消息),我只能读取两行,一行在构造函数中,另一行在 start() 方法中。

经过几次尝试,我明白问题出在这条线上

hsqlServer.start();

在公共静态无效开始();方法。

事实上,如果我主要在 Database.start() 之前移动 Database.connect(),我可以读取 4 条消息(1 条来自构造函数,2 条来自连接 [得到一个连接......不可能连接。 ..] 和 1 从一开始),然后什么都没有。

如果我评论该行 [hsqlServer.start()] 我可以读取所有日志消息(显然,直到由于缺少语句而在某处抛出 NullPointerException)。

我真的不知道为什么以及如何解决这个问题。这件事阻止了我所有的程序日志消息,因为显然“数据库”类几乎在任何其他类之前启动并阻止了所有日志消息。

有任何想法吗?先感谢您

[再次,对不起我的英语不好,我希望我可以理解] 编辑:我也删除了 Javadoc 评论 - 没用。

4

1 回答 1

5

如果存在,HSQLDB 将使用 java.util.logging 或 Log4J。它重新配置日志记录设置以使日志记录正常工作。如果您自己配置日志记录,则必须包括系统属性设置 hsqldb.reconfig_logging=false。然后,您需要配置要包含 HSQLDB 日志消息的级别。请参阅指南:

http://hsqldb.org/doc/2.0/guide/management-chapt.html#mtc_jdc_logging

在启动服务器之前设置系统属性的一种方法是:

 System.setProperty("hsqldb.reconfig_logging", "false");
于 2012-10-06T13:34:01.307 回答