这是我最近遇到的事情。
我对Spring的JdbcTemplate的理解是你可以调用:
JdbcTemplate template = new JdbcTemplate(dataSource);
Connection conn = template.getDataSource().getConnection();
使用传入的数据源返回JdbcTemplate的连接。如果我这样做:
template.getDataSource().getConnection().close();
这是否只是获得另一个连接并关闭它,创建一个漏洞资源,或者它是否为您提供了它正在使用的连接?
编辑:
我在类1中编写了2个方法,这是编写JDBC语句的老派低级方法(使用Connections,Statements和ResultSets):
public void execute(String tableName) {
try {
Class.forName("com.ibm.as400.access.AS400JDBCDriver");
Connection con = DriverManager.getConnection("jdbc:as400://viper", "******", "******");
Statement select = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
ResultSet rs = select.executeQuery ("SELECT * FROM ******." + tableName );
logger.info("start clearing: " + tableName);
while (rs.next ()) {
rs.deleteRow();
}
logger.info("Step1 done clearing: " + tableName);
ConnectionRecycler.recycleConnection(select, true, con);
execute2(tableName);
} catch (Exception eX) {
logger.error(eX);
}
}
另一种方法:
public void execute2(String tableName) {
String nameOS = System.getProperty("os.name");
String sql = (nameOS.equals("OS/400")) ? "DELETE from " + tableName :
"DELETE from " + tableName + " with none";
JdbcTemplate templateSNPJ;
templateSNPJ = new JdbcTemplate(this.snpjDataSource);
templateSNPJ.update(sql);
logger.info("Finished clearing: " + tableName);
getServiceManager().unregisterService(this);
}
我正确地通过这种方式清理资源。第二种方法是使用:
JdbcTemplate.update(sqlCommand);
但似乎JdbcTemplate使连接的活动时间长于配置池的时间。
我在SO:Database connection management in Spring上阅读了本文,并且不得不使用带有在bean中定义的destroy-method = closed参数的dataSource配置,如下所示:
<bean id="SnpjDataSource" class="com.atomikos.jdbc.nonxa.AtomikosNonXADataSourceBean" destroy-method="close">
<property name="uniqueResourceName" value="@#$$datasource"/>
<property name="driverClassName" value="com.ibm.as400.access.AS400JDBCDriver"/>
<property name="url" value="jdbc:as400://VIPER/******"/>
<property name="user" value="FuManChu"/>
<property name="password" value="*%$@^%$*#^$@^$@"/>
<property name="maxPoolSize" value="10"/>
<property name="reapTimeout" value="40"/>
</bean>
EDIT2:
ConnectionRecycler.recycleConnection方法:
public static void recycleConnection(Statement state, boolean closeConnection,
Connection connect) {
try {
state.close();
if (closeConnection) {
connect.close();
}
} catch (SQLException sqlEx) {
logger.error("Error closing resources! ", sqlEx);
}
}
答案 0 :(得分:0)
这取决于您的数据源。如果您想确定使用相同的连接,请在#getConnection
电话中保留句柄或使用SingleConnectionDataSource。请注意,您必须在线程安全的环境中操作才能使用此数据源。它本身不是线程安全的。
此外,您不应该真正需要直接访问Connection
。这就是JdbcTemplate
的重点。它隐藏了JDBC内部结构......避免了泄漏连接等风险。