springboot-异步任务

简单测试使用

异步任务可以简单理解为 前端先立刻返回OK之类的已经做完的信息 然后后端还在运行任务
编写service类 并通过注解告诉springboot为异步任务

package com.jie.service;

import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;

@Service
public class AsynService {
    //告诉springboot这是一个异步方法
    @Async
    public void hello(){
        try {
            Thread.sleep(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("数据正在处理");
    }
}

编写控制类

package com.jie.controller;

import com.jie.service.AsynService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class AsynController {
    @Autowired
    AsynService asynService;
    @RequestMapping("/hello")
    public String hello(){
        asynService.hello();
        return "ok";
    }
}

同时我们需要在启动类添加注解 来开启异步功能

package com.jie;

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

//开启异步功能
@EnableAsync
@SpringBootApplication
public class SpringbootAsynApplication {

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

}

我们测试运行访问/hello页面
springboot-异步任务
可以发现ok立刻就返回了 然后过了3秒后台输出数据正在处理
如果没有通过异步注解 那么结果就是网站加载需要等待3秒 等service方法完全执行完毕才可以跳转

springboot-异步任务

上一篇:Python问题:error: Microsoft Visual C++ 9.0 is required


下一篇:Keepalived+MySQL双主架构