Skip to main content

Java library for developing reactive programming (webflux) backend systems in microservices.

A modern, full-featured Java platform built from the ground up with a Spring/Netty/Jetty backend. The library is designed to be self-sufficient, simple, lightweight, and provide high-end performance. The platform includes several libraries, trace log processing, oauth2 server, keyloak, minio, high-performance asynchronous base rest and soap client (implemented from reactor-core), to application servers and big data solutions.


class Main extends HttpServerLauncher {
@Provides
AsyncServlet servlet() {
return request -> HttpResponse.ok200()
.withPlainText("Hello world");
}

public static void main(String[] args) throws Exception {
Launcher launcher = new HttpHelloWorldExample();
launcher.launch(args);
}
}