0

我有使用数据库的主要数据源,它使用一些连接池。现在我想创建第二个数据源,它将使用相同的连接池在单独的事务中执行日志记录操作,然后是主数据库事务!据我从 Glassfish文档中了解到,如果多个数据源正在使用同一个连接池,那么它们会共享一个事务,直到连接没有关闭(我可能错了,请纠正我)。

那么,有没有办法在连接到数据源时启动新事务?通过设置 TransactionIsolation 可能是什么?

通过以下方式检索连接:

private synchronized Connection getConnection() {
        if (connection == null) {
            try {
                final Context ctx = new InitialContext();
                final DataSource ds = (DataSource) ctx.lookup(getDataSourceLookupAddress());
                connection = ds.getConnection();
            } catch (final NamingException e) {
                errorHandler.error("Datasource JNDI lookup failed: " + dataSourceLookupAddress + "!");
                errorHandler.error(e.toString());
            } catch (final SQLException e) {
                errorHandler.error("Sql connection failed to " + dataSourceLookupAddress + "!");
                errorHandler.error(e.toString());
            }
        }
        return connection;
    }
4

1 回答 1

0

我已经想通了。需要启动一个新线程,然后将创建一个新事务。另请参阅在回滚过程中写入数据库日志

于 2012-08-10T13:36:31.743 回答