mbogoevici / spring-cloud-task

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spring Cloud Task Build Status Stories in Ready Stories in Progress

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 7 or Above

Build:

  $ ./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 CommandLineRunner {

  		@Override
  		public void run(String... strings) 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 spring-code-of-conduct@pivotal.io.

About

License:Apache License 2.0


Languages

Language:Java 75.9%Language:Shell 9.2%Language:XSLT 7.2%Language:Batchfile 6.5%Language:CSS 1.2%Language:Ruby 0.1%