java分批量插入数据(数据量太大)

    1、需求:数据量过大,并且要经常进行插入操作:

        分批插入,每次插入600条数据!

public void insertList(List list) {
    int insertLength = list.size();
    int i = 0;
    while (insertLength > 600) {
        dao.insertList(list.subList(i, i + 600));
        i = i + 600;
        insertLength = insertLength - 600;
    }
    if (insertLength > 0) {
        dao.insertList(list.subList(i, i + insertLength));
    }
}

你可能感兴趣的:(实现小功能)