我有一个简单的webapp,它从tomcat JDBC数据源获取连接。为了跟踪连接使用情况,我打算在打开和关闭连接时实现日志记录。记录应该打印这样的东西。
20151230143623.947[Thread-3] INFO [DataSourceManager:19] Opened connection identified by id : BlahBlahBlah1
20151230143623.947[Thread-3] INFO [DataSourceManager:19] Closed connection identified by id : BlahBlahBlah1
我的开放和关闭方法是这样的。
Connection openConnection(String JNDILookupName) throws Exception {
Connection connection = DataSourceManager.getConnection(JNDILookupName);
logDBOperation("Opened", connection.toString());
return connection;
}
Connection closeConnection(String JNDILookupName) throws Exception {
connection.close();
logDBOperation("Closed", connection.toString());
}
void logDBOperation(String operation, String connecitonName){
logger.info(operation+" connection identified by id : "+connectionName);
}
这里我使用connection.toString()
作为日志中Connection的唯一名称。但我想知道是否有更好的方法来做到这一点。
答案 0 :(得分:2)
只需使用toString()
超类的默认Object
实现。
它已经为你做了这个:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toHexString(hashCode())
会在那里为您提供唯一ID。这是JVM的保证,它将是一个独特的价值。