mybatis批处理解决事务超时问题

        // 获取sqlSession工厂,sqlSessionFactory是配置文件中配置的数据库连接bean
        SqlSessionFactory sqlSessionFactory = SpringContextHolder.getBean("sqlSessionFactory");
        // 获取批处理数据源,false表示手动提交事务
        SqlSession sqlSession = sqlSessionFactory.openSession(ExecutorType.BATCH, false);
        try {
            // 获取需要批处理的mapper
            FundFlowDAO fundFlowDAO = sqlSession.getMapper(FundFlowDAO.class);
            // 批量处理集合
            fundFlowDAO.batchInsertFundFlow(insertFundFlowList);
            sqlSession.commit();
        } catch (Throwable e) {
            LogUtil.error(logger, e.toString());
            sqlSession.rollback();
        } finally {
            if (sqlSession != null) {
                sqlSession.close();
            }
            LogUtil.info(logger, "endTime===" + (System.currentTimeMillis() - startTime) / 1000);
        }

/**
 * hongshiwl.com Inc.
 * Copyright (c) 2015-2016 All Rights Reserved.
 */
package com.opengroup.hongshi.wccy.util;

import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;



/**
 * 以静态变量保存Spring ApplicationContext, 可在任何代码任何地方任何时候中取出ApplicaitonContext. 
 * @author sandy
 * @version $Id: SpringContextHolder.java, v 0.1 2016年4月28日 下午2:21:27 sandy Exp $
 */
public class SpringContextHolder implements ApplicationContextAware {

    private static ApplicationContext applicationContext;

    /** 
    * 实现ApplicationContextAware接口的context注入函数, 将其存入静态变量. 
    */
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) {
        SpringContextHolder.applicationContext = applicationContext;
    }

    /** 
    * 取得存储在静态变量中的ApplicationContext. 
    */
    public static ApplicationContext getApplicationContext() {
        checkApplicationContext();
        return applicationContext;
    }

    /** 
    * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型. 
    */
    @SuppressWarnings("unchecked")
    public static  T getBean(String name) {
        checkApplicationContext();
        return (T) getApplicationContext().getBean(name);
    }

    /** 
    * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型. 
    */
    @SuppressWarnings("unchecked")
    public static  T getBean(Class clazz) {
        checkApplicationContext();
        return (T) getApplicationContext().getBeansOfType(clazz);
    }

    /** 
    * 清除applicationContext静态变量. 
    */
    public static void cleanApplicationContext() {
        applicationContext = null;
    }

    private static void checkApplicationContext() {
        if (applicationContext == null) {
            throw new IllegalStateException(
                "applicaitonContext未注入,请在applicationContext.xml中定义SpringContextHolder");
        }
    }
}

你可能感兴趣的:(mybatis批处理解决事务超时问题)