欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ibatis批量插入数据

程序员文章站 2022-06-06 19:33:58
...

为了减少数据库访问压力,可以在适当的情况下采用Ibatis批量执行。例子如下:

import java.util.ArrayList;
/**
 * 关健字缓存(通过单例来处理)
 *
 * @author
 * @version v 0.1 2012-3-16 下午05:14:06
 */
public class KeywordSingleton extends ArrayList<String>{

    /**  */
    private static final long serialVersionUID = -6177039723625154736L;
    /** 缓存关健字size */
    public static final int            cacheSize        = 10;
   
    private static final KeywordSingleton instance =  new KeywordSingleton();
    /**
     * 私有构造方法
     */
    private KeywordSingleton(){}
    /**
     * 返回唯一实例
     * @return
     */
    public static KeywordSingleton getInstance(){
        return instance;
    }
}

//方法

public void recordKeyword(final String keyword) {
        super.getSqlMapClientTemplate().execute(new SqlMapClientCallback() {
            @Override
            public Object doInSqlMapClient(SqlMapExecutor executor)
                    throws SQLException {
                executor.startBatch();// 开始批处理

               //采用单例进行保存数据
                KeywordSingleton.getInstance().add(keyword);
                if (KeywordSingleton.getInstance().size() == KeywordSingleton.cacheSize) {
                    for (int i = 0; i < KeywordSingleton.getInstance().size(); i++) {
                        executor.update("KEYWORDS.recordKeyword", KeywordSingleton
                                .getInstance().get(i));
                    }
                    executor.executeBatch();// 执行批处理
                    KeywordSingleton.getInstance().clear();// 执行完后清空数组
                    log.info("清空关健字缓存数组:"
                            + KeywordSingleton.getInstance().size());
                }
                return null;
            }
        });
    }
   

 

相关标签: ibatis