CyclicBarrier是一个同步器工具类,用来协调多个线程之间的同步,通过await()
进行阻塞,直到所有的线程都执行await()
后,所有的线程再继续执行。
await()
计数加一,直到达到初始值。Controller:
@RestController
@RequestMapping("/test")
@Slf4j
public class TestController {
@Resource
private CyclicService cyclicService;
/**
* CyclicBarrier实现异步多线程业务处理,不同service,异常情况回滚全部子线程
*
* @return
*/
@ApiOperation(value = "测试CountDownLatch", notes = "测试")
@ApiOperationSupport(order = 5)
@GetMapping("/cyclic/handleDataBack")
public String cyclicHandleDataBack() {
cyclicService.handleDataBack();
return "success";
}
Sevice:
@Service
@Slf4j
public class CountDownService {
@Resource
private TestMapper testMapper;
@Resource
private ApplicationContext applicationContext;
/**
* 主线程同时调用多个子线程执行不同业务处理,当其中一个子线程出现异常,则全部子线程进行回滚
*/
@Transactional(rollbackFor = Exception.class)
public void handleDataBack() {
AtomicBoolean errorTag = new AtomicBoolean(false);
// 设置CyclicBarrier大小,需要比实际子线程+1,业务主线程需要进行阻塞
CyclicBarrier cyclicBarrier = new CyclicBarrier(2 + 1);
// 再创建一个CountDownLatch,大小固定为一,用于子线程相互等待,最后确定是否回滚
CountDownLatch errorCountDown = new CountDownLatch(1);
// 异步调用其他Service,执行业务处理
CyclicService bean = applicationContext.getBean(CyclicService.class);
bean.handleTestOne(cyclicBarrier, errorCountDown, errorTag);
bean.handleTestTwo(cyclicBarrier, errorCountDown, errorTag);
try {
// 主线程阻塞
cyclicBarrier.await();
// 可以设置最大阻塞时间,防止线程一直挂起,当子线程时间大于当前时间后会抛出TimeOut异常
// cyclicBarrier.await(1, TimeUnit.SECONDS);
// 继续执行后续的操作,比如insert、update等
TestEntity entity = new TestEntity();
entity.setId(new Random().nextInt(999999999));
entity.setCount(1);
entity.setCommodityCode("handleTestMain");
entity.setMoney(new Random().nextInt(1000000));
entity.setUserId("user-handleTestMain");
testMapper.insert(entity);
} catch (Exception e) {
log.error("主线程业务执行异常");
errorTag.set(true);
} finally {
// 主线程业务执行完成后,执行errorCountDown计时器减一,使得所有阻塞的子线程,继续执行进入到异常判断中
errorCountDown.countDown();
}
// 如果出现异常
if (errorTag.get()) {
throw new RuntimeException("异步业务执行出现异常");
}
log.info("主线程执行完成");
}
/**
* 子线程具体业务处理
*/
@Transactional(rollbackFor = Exception.class, propagation = Propagation.REQUIRES_NEW)
@Async
public void handleTestOne(CyclicBarrier cyclicBarrier, CountDownLatch errorCountDown, AtomicBoolean errorTag) {
log.info("开始执行handleTestOne线程");
// 模拟业务耗时
ThreadUtil.sleep(2000);
try {
// 执行数据库操作
TestEntity entity = new TestEntity();
entity.setId(new Random().nextInt(999999999));
entity.setCount(1);
entity.setCommodityCode("handleTestOne");
entity.setMoney(new Random().nextInt(1000000));
entity.setUserId("user-handleTestOne");
testMapper.insert(entity);
// 模拟出现异常
int a = 1 / 0;
} catch (Exception e) {
errorTag.set(true);
}
// 子线程中,业务处理完成后,利用cyclicBarrier的特性,计数器加一操作
try {
cyclicBarrier.await();
} catch (Exception e) {
errorTag.set(true);
}
// 子阻塞,直到其他子线程完成操作
try {
errorCountDown.await();
} catch (Exception e) {
errorTag.set(true);
}
log.info("handleTestOne-子线程执行完成");
if (errorTag.get()) {
// 抛出异常,回滚数据
throw new RuntimeException("handleTestOne-子线程业务执行异常");
}
}
/**
* 子线程具体业务处理
*/
@Transactional(rollbackFor = Exception.class, propagation = Propagation.REQUIRES_NEW)
@Async
public void handleTestTwo(CyclicBarrier cyclicBarrier, CountDownLatch errorCountDown, AtomicBoolean errorTag) {
log.info("开始执行handleTestTwo线程");
// 模拟业务耗时
ThreadUtil.sleep(500);
try {
// 执行数据库操作
TestEntity entity = new TestEntity();
entity.setId(new Random().nextInt(999999999));
entity.setCount(1);
entity.setCommodityCode("handleTestTwo");
entity.setMoney(new Random().nextInt(1000000));
entity.setUserId("user-handleTestTwo");
testMapper.insert(entity);
} catch (Exception e) {
errorTag.set(true);
}
// 子线程中,业务处理完成后,利用cyclicBarrier的特性,计数器加一操作
try {
cyclicBarrier.await();
} catch (Exception e) {
errorTag.set(true);
}
// 子阻塞,直到其他子线程完成操作
try {
errorCountDown.await();
} catch (Exception e) {
errorTag.set(true);
}
log.info("handleTestTwo-子线程执行完成");
if (errorTag.get()) {
// 抛出异常,回滚数据
throw new RuntimeException("handleTestTwo-子线程业务执行异常");
}
}
}