Skip to content

spring-cloud/spring-cloud-task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1d81f59 · Mar 27, 2024
Sep 11, 2023
Sep 15, 2023
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Mar 27, 2024
Nov 20, 2022
Mar 20, 2019
Sep 11, 2023
Jul 25, 2022
Feb 3, 2019
Mar 20, 2019
Mar 21, 2019
Sep 11, 2023
Sep 15, 2023
Sep 15, 2023
Mar 27, 2024

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 {

          @Override
          public void run(ApplicationArguments args) throws Exception {
              System.out.println("Hello World");
          }
      }
  }

Code of Conduct

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to [email protected].

Building the Project

This project requires that you invoke the Javadoc engine from the Maven command line. You can do so by appending javadoc:aggregate to the rest of your Maven command. For example, to build the entire project, you could use mvn clean install -DskipTests -P docs.