package com.baeldung.async; import java.util.concurrent.CompletableFuture; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class AsyncService { @Autowired private FirstAsyncService fisrtService; @Autowired private SecondAsyncService secondService; public CompletableFuture asyncMergeServicesResponse() throws InterruptedException { CompletableFuture fisrtServiceResponse = fisrtService.asyncGetData(); CompletableFuture secondServiceResponse = secondService.asyncGetData(); // Merge responses from FirstAsyncService and SecondAsyncService return fisrtServiceResponse.thenCompose(fisrtServiceValue -> secondServiceResponse.thenApply(secondServiceValue -> fisrtServiceValue + secondServiceValue)); } }