8000 GitHub - dlchris/spring-cloud-task: Short lived microservices with Spring Batch
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dlchris/spring-cloud-task

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Cloud Task Build Status Stories in Ready Stories in Progress

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

Build Main Project:

  $ ./mvnw clean install

Example:

  @SpringBootApplication
  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

Short lived microservices with Spring Batch

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 95.2%
  • XSLT 4.0%
  • Other 0.8%
0