前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SpringBoot 整合异步调用方法

SpringBoot 整合异步调用方法

作者头像
北漂的我
发布2019-05-29 10:50:57
1.4K0
发布2019-05-29 10:50:57
举报
文章被收录于专栏:北漂的我北漂的我

1. 在 SpringBoot 主类上使用 @EnableAsync 注解,开启异步调用功能

代码语言:javascript
复制
package com.codingos.springbootdemo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;

@SpringBootApplication
// 开启异步调用
@EnableAsync
public class SpringBootDemoApplication {

	public static void main(String[] args) {
		SpringApplication.run(SpringBootDemoApplication.class, args);
	}
}

2. 创建异步方法类

注意类上使用 @Component 注解,方法上使用 @Async 注解

以下例子仅用于演示功能

代码语言:javascript
复制
package com.codingos.springbootdemo.task;

import java.util.concurrent.Future;

import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Component;

@Component
public class AsyncTask {

	@Async
	public Future<Boolean> doTask11() throws InterruptedException {
		long start = System.currentTimeMillis();
		Thread.sleep(1000);
		long end = System.currentTimeMillis();
		System.out.println("异步任务1耗时: " + (end - start) + "毫秒");
		return new AsyncResult<Boolean>(true);
	}
	
	@Async
	public Future<Boolean> doTask22() throws InterruptedException {
		long start = System.currentTimeMillis();
		Thread.sleep(700);
		long end = System.currentTimeMillis();
		System.out.println("异步任务2耗时: " + (end - start) + "毫秒");
		return new AsyncResult<Boolean>(true);
	}
	
	@Async
	public Future<Boolean> doTask33() throws InterruptedException {
		long start = System.currentTimeMillis();
		Thread.sleep(400);
		long end = System.currentTimeMillis();
		System.out.println("异步任务3耗时: " + (end - start) + "毫秒");
		return new AsyncResult<Boolean>(true);
	}
}

下面在 Controller 里进行调用演示

代码语言:javascript
复制
package com.codingos.springbootdemo.controller;

import java.util.concurrent.Future;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.codingos.springbootdemo.task.AsyncTask;

@RestController
@RequestMapping("/asyncTask")
public class AsyncTaskController {
	
	@Autowired
	private AsyncTask asyncTask;
	
	@RequestMapping("/test")
	public String testAsyncTask() throws InterruptedException {
		long start = System.currentTimeMillis();
		
		Future<Boolean> a = asyncTask.doTask11();
		Future<Boolean> b = asyncTask.doTask22();
		Future<Boolean> c = asyncTask.doTask33();
		// 三个异步方法都执行结束后再往下执行
		while (!a.isDone() || !b.isDone() || !c.isDone()) {
			if(a.isDone() && b.isDone() && c.isDone()) {
				break;
			}
		}
		
		long end = System.currentTimeMillis();
		System.out.println("任务全部完成总耗时: " + (end-start)+"毫秒");
		return "string";
	}
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档