亲宝软件园·资讯

展开

SpringBoot异步任务 Springboot任务之异步任务的使用详解

Z && Y 人气:0
想了解Springboot任务之异步任务的使用详解的相关内容吗,Z && Y在本文为您仔细讲解SpringBoot异步任务的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:SpringBoot异步任务,SpringBoot任务,下面大家一起来学习吧。

01: 异步任务

02: 定时任务

03: 邮件任务

一、SpringBoot--异步任务

 1.1 什么是同步和异步

1.2 Java模拟一个异步请求(线程休眠)

在这里插入图片描述

AsyncService.java

package com.tian.asyncdemo.service;

import org.springframework.stereotype.Service;

@Service
public class AsyncService {
    public void hello() {
        try {
            System.out.println("数据正在处理");
            Thread.sleep(3000);
            System.out.println("数据处理完成");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

在这里插入图片描述

AsyncController.java

package com.tian.asyncdemo.controller;

import com.tian.asyncdemo.service.AsyncService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * ClassName: AsyncController
 * Description:
 *
 * @author Administrator
 * @date 2021/6/6 19:48
 */
@RestController
public class AsyncController {
    @Autowired
    AsyncService asyncService;

    @RequestMapping("/hello")
    public String hello() {
        asyncService.hello();
        return "OK";
    }
}

运行结果:

在这里插入图片描述

1.3 使用异步

在Service的方法中使用@Async说这是一个异步方法,并在主入口上使用@EnableAsync开启异步支持

在这里插入图片描述

AsyncService.java

@Service
public class AsyncService {
    @Async
    public void hello() {
        try {
            System.out.println("数据正在处理");
            Thread.sleep(3000);
            System.out.println("数据处理完成");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

主入口上使用@EnableAsync开启异步支持

在这里插入图片描述

再次测试:

在这里插入图片描述

加载全部内容

相关教程
猜你喜欢
用户评论