最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Spring Boot分段處理List集合多線程批量插入數據的解決方案

 更新時間:2024年04月26日 09:54:11   作者:濤哥是個大帥比  
大數據量的List集合,需要把List集合中的數據批量插入數據庫中,本文給大家介紹Spring Boot分段處理List集合多線程批量插入數據的解決方案,感興趣的朋友跟隨小編一起看看吧

項目場景:

大數據量的List集合,需要把List集合中的數據批量插入數據庫中。

解決方案:

拆分list集合后,然后使用多線程批量插入數據庫

1.實體類

package com.test.entity;
import lombok.Data;
@Data
public class TestEntity {
	private String id;
	private String name;
}

2.Mapper

如果數據量不大,用foreach標簽就足夠了。如果數據量很大,建議使用batch模式。

package com.test.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
import com.test.entity.TestEntity;
public interface TestMapper {
	/**
	  * 1.用于使用batch模式,ExecutorType.BATCH開啟批處理模式
	  * 數據量很大,推薦這種方式
	  */
	@Insert("insert into test(id, name) "
			   + " values"
			   + " (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR})")
	void testInsert(TestEntity testEntity);
	/**
	  * 2.使用foreach標簽,批量保存
	  * 數據量少可以使用這種方式
	  */
	@Insert("insert into test(id, name) "
			   + " values"
			   + " <foreach collection='list' item='item' index='index' separator=','>"
			   + " (#{item.id,jdbcType=VARCHAR}, #{item.name,jdbcType=VARCHAR})"
			   + " </foreach>")
	void testBatchInsert(@Param("list") List<TestEntity> list);
}

3.spring容器注入線程池bean對象

package com.test.config;
import java.util.concurrent.Executor;
import java.util.concurrent.ThreadPoolExecutor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
@Configuration
@EnableAsync
public class ExecutorConfig {
    /**
     * 異步任務自定義線程池
     */
    @Bean(name = "asyncServiceExecutor")
    public Executor asyncServiceExecutor() {
    	ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        //配置核心線程數
        executor.setCorePoolSize(50);
        //配置最大線程數
        executor.setMaxPoolSize(500);
        //配置隊列大小
        executor.setQueueCapacity(300);
        //配置線程池中的線程的名稱前綴
        executor.setThreadNamePrefix("testExecutor-");
        // rejection-policy:當pool已經達到max size的時候,如何處理新任務
        // CALLER_RUNS:不在新線程中執(zhí)行任務,而是有調用者所在的線程來執(zhí)行
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
        //調用shutdown()方法時等待所有的任務完成后再關閉
        executor.setWaitForTasksToCompleteOnShutdown(true);
        //等待所有任務完成后的最大等待時間
		executor.setAwaitTerminationSeconds(60);
        return executor;
    }
}

4.創(chuàng)建異步線程業(yè)務類

package com.test.service;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import org.apache.ibatis.session.ExecutorType;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import com.test.entity.TestEntity;
import com.test.mapper.TestMapper;
@Service
public class AsyncService {
	@Autowired
	private SqlSessionFactory sqlSessionFactory;
	@Async("asyncServiceExecutor")
    public void executeAsync(List<String> logOutputResults, CountDownLatch countDownLatch) {
        try{
        	//獲取session,打開批處理,因為是多線程,所以每個線程都要開啟一個事務
        	SqlSession session = sqlSessionFactory.openSession(ExecutorType.BATCH);
        	TestMapper mapper = session.getMapper(TestMapper.class);
            //異步線程要做的事情
        	for (int i = 0; i < logOutputResults.size(); i++) {
    			System.out.println(Thread.currentThread().getName() + "線程:" + logOutputResults.get(i));
    			TestEntity test = new TestEntity();
    			//test.set()
    			//.............
    			//批量保存
    			mapper.testInsert(test);
    			//每1000條提交一次防止內存溢出
    			if(i%1000==0){
    				session.flushStatements();
    			}
			}
        	//提交剩下未處理的事務
    		session.flushStatements();
        }finally {
            countDownLatch.countDown();// 很關鍵, 無論上面程序是否異常必須執(zhí)行countDown,否則await無法釋放
        }
    }
}

5.拆分list調用異步的業(yè)務方法

package com.test.service;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
@Service
public class TestService {
	@Resource
	private AsyncService asyncService;
	public int testMultiThread() {
        List<String> logOutputResults = getTestData();
        //按線程數拆分后的list
        List<List<String>> lists = splitList(logOutputResults);
        CountDownLatch countDownLatch = new CountDownLatch(lists.size());
        for (List<String> listSub:lists) {
            asyncService.executeAsync(listSub, countDownLatch);
        }
        try {
            countDownLatch.await(); //保證之前的所有的線程都執(zhí)行完成,才會走下面的;
            // 這樣就可以在下面拿到所有線程執(zhí)行完的集合結果
        } catch (Exception e) {
            e.printStackTrace();
        }
        return logOutputResults.size();
    }
	public List<String> getTestData() {
		List<String> logOutputResults = new ArrayList<String>();
        for (int i = 0; i < 3000; i++) {
        	logOutputResults.add("測試數據"+i);
		}
        return logOutputResults;
    }
	public List<List<String>> splitList(List<String> logOutputResults) {
		List<List<String>> results = new ArrayList<List<String>>();
		/*動態(tài)線程數方式*/
		// 每500條數據開啟一條線程
		int threadSize = 500;
		// 總數據條數
		int dataSize = logOutputResults.size();
		// 線程數,動態(tài)生成
		int threadNum = dataSize / threadSize + 1;
	    /*固定線程數方式
		    // 線程數
		    int threadNum = 6;
		    // 總數據條數
		    int dataSize = logOutputResults.size();
		    // 每一條線程處理多少條數據
		    int threadSize = dataSize / (threadNum - 1);
	    */
		// 定義標記,過濾threadNum為整數
		boolean special = dataSize % threadSize == 0;
		List<String> cutList = null;
		// 確定每條線程的數據
		for (int i = 0; i < threadNum; i++) {
			if (i == threadNum - 1) {
				if (special) {
					break;
				}
				cutList = logOutputResults.subList(threadSize * i, dataSize);
			} else {
				cutList = logOutputResults.subList(threadSize * i, threadSize * (i + 1));
			}
			results.add(cutList);
		}
        return results;
    }
}

6.Controller測試

@RestController
public class TestController {
	@Resource
	private TestService testService;
	@RequestMapping(value = "/log", method = RequestMethod.GET)
	@ApiOperation(value = "測試")
	public String test() {
		testService.testMultiThread();
		return "success";
	}
}

總結:

注意這里執(zhí)行插入的數據是無序的。

擴展:Java多線程分段處理List集合

項目場景:

大數據量的List集合,需要把List集合中的數據批量插入數據庫中。

解決方案:

拆分list集合后,然后使用多線程實現(xiàn)

public static void main(String[] args) throws Exception {
	// 開始時間
	long start = System.currentTimeMillis();
	List<String> list = new ArrayList<String>();
	for (int i = 1; i <= 3000; i++) {
		list.add(i + "");
	}
    /*動態(tài)線程數方式*/
	// 每500條數據開啟一條線程
	int threadSize = 500;
	// 總數據條數
	int dataSize = list.size();
	// 線程數,動態(tài)生成
	int threadNum = dataSize / threadSize + 1;
    /*固定線程數方式
	    // 線程數
	    int threadNum = 6;
	    // 總數據條數
	    int dataSize = list.size();
	    // 每一條線程處理多少條數據
	    int threadSize = dataSize / (threadNum - 1);
    */
	// 定義標記,過濾threadNum為整數
	boolean special = dataSize % threadSize == 0;
	// 創(chuàng)建一個線程池
	ExecutorService exec = Executors.newFixedThreadPool(threadNum);
	// 定義一個任務集合
	List<Callable<Integer>> tasks = new ArrayList<Callable<Integer>>();
	Callable<Integer> task = null;
	List<String> cutList = null;
	// 確定每條線程的數據
	for (int i = 0; i < threadNum; i++) {
		if (i == threadNum - 1) {
			if (special) {
				break;
			}
			cutList = list.subList(threadSize * i, dataSize);
		} else {
			cutList = list.subList(threadSize * i, threadSize * (i + 1));
		}
		final List<String> listStr = cutList;
		task = new Callable<Integer>() {
			@Override
			public Integer call() throws Exception {
				//業(yè)務邏輯,循環(huán)處理分段后的list
				System.out.println(Thread.currentThread().getName() + "線程:" + listStr);
				//......
				int logCount = 0;	//記錄下數量
				for (int j = 0; j < listStr.size(); j++) {
					logCount++;
				}
				return logCount;
			}
		};
		// 這里提交的任務容器列表和返回的Future列表存在順序對應的關系
		tasks.add(task);
	}
	exec.invokeAll(tasks);
	//總數
    int total = 0;
    try {
        List<Future<Integer>> results = exec.invokeAll(tasks);
        for (Future<Integer> future : results) {
            //累計線程處理的總記錄數
            total+=future.get();
        }
        // 關閉線程池
        exec.shutdown();
	} catch (Exception e) {
		e.printStackTrace();
	}
	System.out.println("線程任務執(zhí)行結束");
	System.out.println("總共處理了"+total+"條數據,消耗了 :" + (System.currentTimeMillis() - start) + "毫秒");
}

到此這篇關于Spring Boot分段處理List集合多線程批量插入數據的文章就介紹到這了,更多相關Spring Boot批量插入數據內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • Mybatis-plus實現(xiàn)主鍵自增和自動注入時間的示例代碼

    Mybatis-plus實現(xiàn)主鍵自增和自動注入時間的示例代碼

    這篇文章主要介紹了Mybatis-plus實現(xiàn)主鍵自增和自動注入時間的示例代碼,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-07-07
  • java+vue實現(xiàn)添加單選題、多選題到題庫功能

    java+vue實現(xiàn)添加單選題、多選題到題庫功能

    這篇文章主要為大家詳細介紹了java+vue實現(xiàn)添加單選題、多選題到題庫功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-04-04
  • java檢查數組是否有重復元素的方法

    java檢查數組是否有重復元素的方法

    這篇文章主要介紹了java檢查數組是否有重復元素的方法,涉及java針對數組元素的操作技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-07-07
  • java生成xml格式文件的方法

    java生成xml格式文件的方法

    這篇文章主要介紹了java生成xml格式文件的方法,涉及java節(jié)點遍歷與屬性操作的相關技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2016-07-07
  • Jenkins源代碼管理SVN實現(xiàn)步驟解析

    Jenkins源代碼管理SVN實現(xiàn)步驟解析

    這篇文章主要介紹了Jenkins源代碼管理SVN實現(xiàn)步驟解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-09-09
  • Java項目中防止SQL注入的四種方法推薦

    Java項目中防止SQL注入的四種方法推薦

    sql注入是web開發(fā)中最常見的一種安全漏洞,這篇文章為大家整理了四種Java項目中防止SQL注入的方法,有需要的小伙伴可以參考一下
    2025-03-03
  • 基于SpringBoot打造RESTful API實戰(zhàn)指南

    基于SpringBoot打造RESTful API實戰(zhàn)指南

    本文詳細介紹了RESTful API的基本概念、設計規(guī)范以及與非RESTful風格的對比,通過Spring Boot實戰(zhàn)部分,展示了如何實現(xiàn)一個簡單的RESTful API,需要的朋友可以參考下
    2025-12-12
  • Spring?boot2.0?實現(xiàn)日志集成的方法(2)

    Spring?boot2.0?實現(xiàn)日志集成的方法(2)

    這篇文章主要介紹了Spring?boot2.0?實現(xiàn)日志集成的方法,上一章講解了spring?boot日志簡單集成,這篇我們將日志進行分類,常規(guī)日志、異常日志、監(jiān)控日志等,需要將日志輸出到不同的文件,具體內容需要的小伙伴可以參考一下
    2022-04-04
  • SpringBoot+Mybatis+Vue 實現(xiàn)商品模塊的crud操作

    SpringBoot+Mybatis+Vue 實現(xiàn)商品模塊的crud操作

    這篇文章主要介紹了SpringBoot+Mybatis+Vue 實現(xiàn)商品模塊的crud操作,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-10-10
  • 詳解SpringMVC中的四種跳轉方式、視圖解析器問題

    詳解SpringMVC中的四種跳轉方式、視圖解析器問題

    這篇文章主要介紹了SpringMVC的四種跳轉方式、視圖解析器,springmvc核心配置文件和視圖解析器的使用,添加視圖解析器,通過案例講解四種跳轉方式,需要的朋友可以參考下
    2022-10-10

最新評論

荥阳市| 堆龙德庆县| 景洪市| 沈阳市| 南开区| 开原市| 景泰县| 剑河县| 荃湾区| 商河县| 铅山县| 鄂尔多斯市| 武威市| 奈曼旗| 堆龙德庆县| 潢川县| 原平市| 图木舒克市| 永和县| 邳州市| 长武县| 舞钢市| 桂阳县| 榕江县| 华阴市| 稷山县| 延寿县| 平陆县| 东宁县| 绍兴县| 龙游县| 泗水县| 织金县| 龙里县| 确山县| 广饶县| 万山特区| 六枝特区| 泽普县| 积石山| 云梦县|