博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Springboot对多线程的支持详解
阅读量:6289 次
发布时间:2019-06-22

本文共 3583 字,大约阅读时间需要 11 分钟。

Springboot对多线程的支持详解

这两天看阿里的JAVA开发手册,到多线程的时候说永远不要用 new Thread()这种方式来使用多线程。确实是这样的,我一直在用线程池,到了springboot才发现他已经给我们提供了很方便的线程池机制。
本博客代码托管在github上

一、介绍

Spring是通过任务执行器(TaskExecutor)来实现多线程和并发编程,使用ThreadPoolTaskExecutor来创建一个基于线城池的TaskExecutor。在使用线程池的大多数情况下都是异步非阻塞的。我们配置注解@EnableAsync可以开启异步任务。然后在实际执行的方法上配置注解@Async上声明是异步任务。

二、配置类

配置类代码如下:

package com.spartajet.springbootlearn.thread;import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;import org.springframework.context.annotation.Configuration;import org.springframework.scheduling.annotation.AsyncConfigurer;import org.springframework.scheduling.annotation.EnableAsync;import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;import java.util.concurrent.Executor;/** * @description * @create 2017-02-22 下午11:53 * @email gxz04220427@163.com */@Configuration@EnableAsyncpublic class ThreadConfig implements AsyncConfigurer {    /**     * The {@link Executor} instance to be used when processing async     * method invocations.     */    @Override    public Executor getAsyncExecutor() {        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();        executor.setCorePoolSize(5);        executor.setMaxPoolSize(15);        executor.setQueueCapacity(25);        executor.initialize();        return executor;    }    /**     * The {@link AsyncUncaughtExceptionHandler} instance to be used     * when an exception is thrown during an asynchronous method execution     * with {@code void} return type.     */    @Override    public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {        return null;    }}

解读:

  1. 利用EnableAsync来开启Springboot对于异步任务的支持
  2. 配置类实现接口AsyncConfigurator,返回一个ThreadPoolTaskExecutor线程池对象。

三、任务执行

任务执行代码:

package com.spartajet.springbootlearn.thread;import org.springframework.scheduling.annotation.Async;import org.springframework.stereotype.Service;/** * @description * @create 2017-02-23 上午12:00 * @email gxz04220427@163.com */@Servicepublic class AsyncTaskService {    @Async    public void executeAsyncTask(int i) {        System.out.println("线程" + Thread.currentThread().getName() + " 执行异步任务:" + i);    }}

代码解读:

  1. 通过@Async注解表明该方法是异步方法,如果注解在类上,那表明这个类里面的所有方法都是异步的。

四、测试代码

package com.spartajet.springbootlearn;import com.spartajet.springbootlearn.thread.AsyncTaskService;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;@RunWith (SpringRunner.class)@SpringBootTestpublic class SpringbootLearnApplicationTests {    @Autowired    private AsyncTaskService asyncTaskService;    @Test    public void contextLoads() {    }    @Test    public void threadTest() {        for (int i = 0; i < 20; i++) {            asyncTaskService.executeAsyncTask(i);        }    }}

测试结果:

线程ThreadPoolTaskExecutor-4 执行异步任务:3线程ThreadPoolTaskExecutor-2 执行异步任务:1线程ThreadPoolTaskExecutor-1 执行异步任务:0线程ThreadPoolTaskExecutor-1 执行异步任务:7线程ThreadPoolTaskExecutor-1 执行异步任务:8线程ThreadPoolTaskExecutor-1 执行异步任务:9线程ThreadPoolTaskExecutor-1 执行异步任务:10线程ThreadPoolTaskExecutor-5 执行异步任务:4线程ThreadPoolTaskExecutor-3 执行异步任务:2线程ThreadPoolTaskExecutor-5 执行异步任务:12线程ThreadPoolTaskExecutor-1 执行异步任务:11线程ThreadPoolTaskExecutor-2 执行异步任务:6线程ThreadPoolTaskExecutor-4 执行异步任务:5线程ThreadPoolTaskExecutor-2 执行异步任务:16线程ThreadPoolTaskExecutor-1 执行异步任务:15线程ThreadPoolTaskExecutor-5 执行异步任务:14线程ThreadPoolTaskExecutor-3 执行异步任务:13线程ThreadPoolTaskExecutor-1 执行异步任务:19线程ThreadPoolTaskExecutor-2 执行异步任务:18线程ThreadPoolTaskExecutor-4 执行异步任务:17

转载地址:http://nrkta.baihongyu.com/

你可能感兴趣的文章
【Docker学习笔记(四)】通过Nginx镜像快速搭建静态网站
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务
查看>>
<转>云主机配置OpenStack使用spice的方法
查看>>
java jvm GC 各个区内存参数设置
查看>>
[使用帮助] PHPCMS V9内容模块PC标签调用说明
查看>>
关于FreeBSD的CVSROOT的配置
查看>>
基于RBAC权限管理
查看>>
数学公式的英语读法
查看>>
留德十年
查看>>
迷人的卡耐基说话术
查看>>
PHP导出table为xls出现乱码解决方法
查看>>
PHP问题 —— 丢失SESSION
查看>>
Java中Object类的equals()和hashCode()方法深入解析
查看>>
数据库
查看>>
Vue------第二天(计算属性、侦听器、绑定Class、绑定Style)
查看>>
dojo.mixin(混合进)、dojo.extend、dojo.declare
查看>>
Python 数据类型
查看>>
iOS--环信集成并修改头像和昵称(需要自己的服务器)
查看>>
PHP版微信权限验证配置,音频文件下载,FFmpeg转码,上传OSS和删除转存服务器本地文件...
查看>>
教程前言 - 回归宣言
查看>>