All Projects → spring-cloud → Spring Cloud Task

spring-cloud / Spring Cloud Task

Licence: apache-2.0
Short lived microservices with Spring Batch

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spring Cloud Task

Kumuluzee
Lightweight open-source framework for developing microservices using standard Java EE technologies and migrating Java EE to cloud-native architecture.
Stars: ✭ 274 (-11.61%)
Mutual labels:  microservices
Go Micro
A pluggable Go framework for distributed systems development
Stars: ✭ 17,350 (+5496.77%)
Mutual labels:  microservices
Surging
Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. The service engine supports http, TCP, WS,Grpc, Thrift,Mqtt, UDP, and DNS protocols. It uses ZooKeeper and Consul as a registry, and integrates it. Hash, random, polling, Fair Polling as a load balancing algorithm, built-in service gove…
Stars: ✭ 3,088 (+896.13%)
Mutual labels:  microservices
Spring Cloud Gateway
A Gateway built on Spring Framework 5.x and Spring Boot 2.x providing routing and more.
Stars: ✭ 3,305 (+966.13%)
Mutual labels:  microservices
Dew
微服务一站式解决方案,提供:架构指南、容器优先/兼容Spring Cloud与Service Mesh的框架、最佳实践及Devops标准化流程。
Stars: ✭ 285 (-8.06%)
Mutual labels:  microservices
Armeria
Your go-to microservice framework for any situation, from the creator of Netty et al. You can build any type of microservice leveraging your favorite technologies, including gRPC, Thrift, Kotlin, Retrofit, Reactive Streams, Spring Boot and Dropwizard.
Stars: ✭ 3,392 (+994.19%)
Mutual labels:  microservices
Service Fabric
Service Fabric is a distributed systems platform for packaging, deploying, and managing stateless and stateful distributed applications and containers at large scale.
Stars: ✭ 2,874 (+827.1%)
Mutual labels:  microservices
Remoto
Ultra-simple RPC ecosystem designed for right now.
Stars: ✭ 304 (-1.94%)
Mutual labels:  microservices
Yarpc Go
A message passing platform for Go
Stars: ✭ 285 (-8.06%)
Mutual labels:  microservices
Eureka Js Client
JS implementation of a client for Eureka (https://github.com/Netflix/eureka), the Netflix OSS service registry.
Stars: ✭ 293 (-5.48%)
Mutual labels:  microservices
Eventuate Tram Examples Customers And Orders
An example of Choreography-based sagas in Spring Boot/JPA microservices
Stars: ✭ 276 (-10.97%)
Mutual labels:  microservices
Yoyogo
🦄🌈 YoyoGo is a simple, light and fast , dependency injection based micro-service framework written in Go. Support Nacos ,Consoul ,Etcd ,Eureka ,kubernetes.
Stars: ✭ 277 (-10.65%)
Mutual labels:  microservices
Solution Architecture
Solution Architecture links, articles, books, video lessons, etc.
Stars: ✭ 289 (-6.77%)
Mutual labels:  microservices
Ehttp
simple http server base on epoll
Stars: ✭ 272 (-12.26%)
Mutual labels:  microservices
Aofe.code
《前端架构:从入门到微前端》源码,code for Architecture of Frontend
Stars: ✭ 292 (-5.81%)
Mutual labels:  microservices
Serverless Microservices Reference Architecture
This reference architecture walks you through the decision-making process involved in designing, developing, and delivering a serverless application using a microservices architecture through hands-on instructions for configuring and deploying all of the architecture's components along the way. The goal is to provide practical hands-on experience in working with several Azure services and the technologies that effectively use them in a cohesive and unified way to build a serverless-based microservices architecture.
Stars: ✭ 270 (-12.9%)
Mutual labels:  microservices
Zheng
基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。
Stars: ✭ 16,163 (+5113.87%)
Mutual labels:  microservices
Ilc
Isomorphic Layout Composer - complete solution for Micro Frontends composition into SPA with SSR & i18n support
Stars: ✭ 308 (-0.65%)
Mutual labels:  microservices
Memstate
In-memory event-sourced ACID-transactional distributed object graph engine for .NET Standard
Stars: ✭ 280 (-9.68%)
Mutual labels:  microservices
Obvs
An observable microservice bus library for .NET, that wraps the underlying message transports in simple Rx based interfaces.
Stars: ✭ 290 (-6.45%)
Mutual labels:  microservices

//// DO NOT EDIT THIS FILE. IT WAS GENERATED. Manual changes to this file will be lost when it is generated again. Edit the files in the src/main/asciidoc/ directory instead. ////

= Spring Cloud Task image:https://build.spring.io/plugins/servlet/wittified/build-status/SCT-STASK[Build Status, link=https://build.spring.io/browse/SCT-STASK]

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:

[source,shell,indent=2]

$ ./mvnw clean install

== Example:

[source,java,indent=2]

@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 link:CODE_OF_CONDUCT.adoc[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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].