Skip to content

spring-cloud/spring-cloud-task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Cloud Task

Is a project centered around the idea of processing on demand. A user is able to develop a “task” that can be deployed, executed and removed on demand, yet the result of the process persists beyond the life of the task for future reporting.

Requirements:

  • Java 17 or Above

Build Main Project:

  $ ./mvnw clean install

Example:

  @SpringBootApplication
  @EnableTask
  public class MyApp {

      @Bean
      public MyTaskApplication myTask() {
          return new MyTaskApplication();
      }

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

      public static class MyTaskApplication implements ApplicationRunner