HasorDB 使用原始连接
2021-12-30 11:31 更新
有时候我们需要获取最原始的 Connection
那么可以采用下面方式:
ConnectionCallback<List<TestUser>> callBack = new ConnectionCallback<List<TestUser>>() {
public List<TestUser> doInConnection(Connection con) throws SQLException {
List<TestUser> result = ...
// do some thing
return result;
}
};
List<TestUser> resultList = jdbcTemplate.execute(callBack);
以上内容是否对您有帮助:
更多建议: