JAVA 并发编程-应用篇
Posted lytwajue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 并发编程-应用篇相关的知识,希望对你有一定的参考价值。
提到java多线程不免有些人会头大。非常多概念都是非常理解可是真正到了实战的时候又是不知道怎样操作了。以下就结合实际项目来说说多线程的应用。
业务需求:
举例:批量插入10万条用户的相关活动优惠券
操作方式:使用固定10个大小的线程池来做。并每次处理1000条插入数据
线程类:注实现Callable<Integer>接口的是能得到返回值的线程类
public class InsertBatchThread implements Callable<Integer> { private int vdate; private int uid; private int count; private FundsInfoMapper fundsInfoMapper; private WmpsDayInterMapper wmpsDayInterMapper; private DataSource dataSource; public WmpsDayInterMapper getWmpsDayInterMapper() { if (null == wmpsDayInterMapper) { synchronized (this) { if (null == wmpsDayInterMapper) { wmpsDayInterMapper = SpringContextUtils.getBean("wmpsDayInterMapper"); } } } return wmpsDayInterMapper; } public FundsInfoMapper getProCommFundsInfoMapper() { if (null == fundsInfoMapper) { synchronized (this) {
以上是关于JAVA 并发编程-应用篇的主要内容,如果未能解决你的问题,请参考以下文章
Java实战应用50篇-Java并发编程:volatile关键字解析
Java实战应用50篇-Java并发编程:volatile关键字解析
JUC并发编程 共享模式之工具 JUC CountdownLatch(倒计时锁) -- CountdownLatch应用(等待多个线程准备完毕( 可以覆盖上次的打印内)等待多个远程调用结束)(代码片段