Giter Club home page Giter Club logo

spring-cloud-task's Introduction

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 8 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 ./mvnw -Pfull javadoc:aggregate.

spring-cloud-task's People

Contributors

augilar avatar cppwfs avatar csaethre19 avatar dixittarun81 avatar fwinkler79 avatar ghillert avatar gitter-badger avatar guoyiang avatar haybu avatar hpoettker avatar ilayaperumalg avatar isikerhan avatar jvalkeal avatar kinjelom avatar making avatar marcingrzejszczak avatar markpollack avatar mminella avatar robertmcnees avatar royclarkson avatar ryanjbaxter avatar sabbyanandan avatar scbrown avatar simrangupta234 avatar spencergibb avatar spring-builds avatar spring-operator avatar trisberg avatar tschuettel avatar tzolov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.