Spring Boot integration @Async Quick Start Demo

HBLOG
3 min readMay 11, 2024

--

1. What is @Async?

When we use SpringBoot for development, we may encounter some scenarios where asynchronous tasks are executed, and if we create a new asynchronous thread to execute these asynchronous tasks every time we execute these asynchronous tasks, the code will be too redundant. Thankfully, SpringBoot provides us with Async annotations, which makes it easy for us to execute these asynchronous tasks.

Expiration conditions

  1. The asynchronous method uses static modifications
  2. The calling method and the asynchronous method are in the same class

2. Code engineering

Objective: Verify @async asynchronous tasks

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>springboot-demo</artifactId>
<groupId>com.et</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>async</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project>

service

  • thenApply : Process the results of the previous stage calculations
  • thenCompose: Combine the results of the two calculations
package com.et.async.service;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Future;
/**
* @author liuhaihua
* @version 1.0
* @ClassName NotifyServiceimpl
* @Description todo
*/
@Service
@Slf4j
public class NotifyService {
public void noAsync() {
log.info("Execute method asynchronously. " + Thread.currentThread().getName());
}
@Async("threadPoolTaskExecutor")
public void withAsync() {
log.info("Execute method asynchronously. " + Thread.currentThread().getName());
}
@Async("threadPoolTaskExecutor")
public void mockerror() {
int ss=12/0;
}
@Async
public Future<String> asyncMethodWithReturnType() {
log.info("Execute method asynchronously - " + Thread.currentThread().getName());
try {
Thread.sleep(5000);
return new AsyncResult<String>("hello world !!!!");
} catch (InterruptedException e) {
e.printStackTrace();
}
return null;
}
@Autowired
private FirstAsyncService fisrtService;
@Autowired
private SecondAsyncService secondService;
public CompletableFuture<String> asyncMergeServicesResponse() throws InterruptedException {
CompletableFuture<String> fisrtServiceResponse = fisrtService.asyncGetData();
CompletableFuture<String> secondServiceResponse = secondService.asyncGetData();
// Merge responses from FirstAsyncService and SecondAsyncService
return fisrtServiceResponse.thenCompose(fisrtServiceValue -> secondServiceResponse.thenApply(secondServiceValue -> fisrtServiceValue + secondServiceValue));
}
}
package com.et.async.service;
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Service;
import java.util.concurrent.CompletableFuture;
/**
* @author liuhaihua
* @version 1.0
* @ClassName FirstAsyncService
* @Description todo
*/
@Service
@Slf4j
public class FirstAsyncService {
@Async
public CompletableFuture<String> asyncGetData() throws InterruptedException {
log.info("Execute method asynchronously " + Thread.currentThread().getName());
Thread.sleep(4000);
return new AsyncResult<>(super.getClass().getSimpleName() + " response !!! ").completable();
}
}
package com.et.async.service;
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.AsyncResult;
import org.springframework.stereotype.Service;
import java.util.concurrent.CompletableFuture;
/**
* @author liuhaihua
* @version 1.0
* @ClassName SecondAsyncService
* @Description todo
*/
@Service
@Slf4j
public class SecondAsyncService {
@Async
public CompletableFuture<String> asyncGetData() throws InterruptedException {
log.info("Execute method asynchronously " + Thread.currentThread()
.getName());
Thread.sleep(4000);
return new AsyncResult<>(super.getClass().getSimpleName() + " response !!! ").completable();
}
}

config

A @EnableAsync annotation is enabled

package com.et.async.config;
import com.et.async.exception.CustomAsyncExceptionHandler;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import org.springframework.context.annotation.Bean;
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;
@Configuration
@EnableAsync
public class SpringAsyncConfig implements AsyncConfigurer {
@Bean(name = "threadPoolTaskExecutor")
public Executor threadPoolTaskExecutor() {
return new ThreadPoolTaskExecutor();
}
@Override
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor threadPoolTaskExecutor = new ThreadPoolTaskExecutor();
threadPoolTaskExecutor.initialize();
return threadPoolTaskExecutor;
}
@Override
public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
return new CustomAsyncExceptionHandler();
}
}

Exception class

For asynchronous tasks with no return value, configure the CustomAsyncExceptionHandler class to handle exceptions that cannot be caught

package com.et.async.exception;
import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;
import java.lang.reflect.Method;
public class CustomAsyncExceptionHandler
implements AsyncUncaughtExceptionHandler {
@Override
public void handleUncaughtException(
Throwable throwable, Method method, Object... obj) {

System.out.println("Exception message - " + throwable.getMessage());
System.out.println("Method name - " + method.getName());
for (Object param : obj) {
System.out.println("Parameter value - " + param);
}
}

}

The above are just some key codes. For all codes, please see the code repository below.

code repository

3. Testing

Test the async asynchronous task

@Test
public void execute() throws ExecutionException, InterruptedException {
log.info("your method test Code");
log.info("Invoking an asynchronous method. " + Thread.currentThread().getName());
notifyService.noAsync();
notifyService.withAsync();
}

Test asynchronous tasks with thread pools

@Async("threadPoolTaskExecutor")
public void mockerror() {
int ss=12/0;
}

Test an asynchronous method with a return value

@Test
public void testAsyncAnnotationForMethodsWithReturnType()
throws InterruptedException, ExecutionException {
log.info("Invoking an asynchronous method. " + Thread.currentThread().getName());
Future<String> future = notifyService.asyncMethodWithReturnType();
while (true) {
if (future.isDone()) {
log.info("Result from asynchronous process - " + future.get());
break;
}
log.info("Continue doing something else. ");
Thread.sleep(1000);
}
}

Test the merging results of multiple asynchronous tasks

@Test
public void testAsyncAnnotationForMergedServicesResponse() throws InterruptedException, ExecutionException {
log.info("Invoking an asynchronous method. " + Thread.currentThread().getName());
CompletableFuture<String> completableFuture = notifyService.asyncMergeServicesResponse();
while (true) {
if (completableFuture.isDone()) {
log.info("Result from asynchronous process - " + completableFuture.get());
break;
}
log.info("Continue doing something else. ");
Thread.sleep(1000);
}
}

Test void method exception capture

@Test
public void mockerror() throws ExecutionException, InterruptedException {
notifyService.mockerror();
}

4. References

--

--

HBLOG
HBLOG

Written by HBLOG

talk is cheap ,show me your code

No responses yet