我想知道如何为SqlMapClientTemplate
创建自己的回调。特别是我可以进行批量调用。
答案 0 :(得分:1)
我这样做的方法是覆盖SqlMapClientCallback<T>
方法doInSqlMapClient
。
SqlMapClientCallback<Integer> callback = new SqlMapClientCallback<Integer>() {
public Integer doInSqlMapClient(SqlMapExecutor executor) throws SQLException {
executor.startBatch();
//... do your queries here
return executor.executeBatch();
}
};