Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Easy2Go/spring-cloud-task

Repository files navigation

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

Short lived microservices with Spring Batch

Resources

License

Stars

Watchers

Forks

Packages

Contributors

Languages

  • Java 82.6%
  • Shell 7.2%
  • Batchfile 5.1%
  • XSLT 4.3%
  • Other 0.8%

AltStyle によって変換されたページ (->オリジナル) /