Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cescoffier/vertx-microservices-workshop
Vert.x Microservices Hand's on lab
https://github.com/cescoffier/vertx-microservices-workshop
Last synced: 4 days ago
JSON representation
Vert.x Microservices Hand's on lab
- Host: GitHub
- URL: https://github.com/cescoffier/vertx-microservices-workshop
- Owner: cescoffier
- License: apache-2.0
- Created: 2016-04-11T08:33:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T04:00:54.000Z (over 1 year ago)
- Last Synced: 2024-10-17T07:52:30.690Z (about 1 month ago)
- Language: Java
- Homepage: http://escoffier.me/vertx-hol/
- Size: 2.78 MB
- Stars: 330
- Watchers: 35
- Forks: 196
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Audit: audit-service/README.md
Awesome Lists containing this project
README
# Vert.x - From zero to (micro-) hero.
This repository is a lab about vert.x explaining how to build distributed _microservice_ reactive applications using
Vert.x.Instructions are available on http://escoffier.me/vertx-hol
Complete code is available in the `solution` directory.
## Teasing
Vert.x is a toolkit to create reactive distributed applications running on the top of the Java Virtual Machine. Vert.x
exhibits very good performances, and a very simple and small API based on the asynchronous, non-blocking
development model. With vert.x, you can developed microservices in Java, but also in JavaScript, Groovy, Ruby and
Ceylon. Vert.x also lets you interact with Node.JS, .NET or C applications.This lab is an introduction to microservice development using Vert.x. The application is a fake _trading_
application, and maybe you are going to become (virtually) rich! The applications is a federation of interaction microservices packaged as _fat-jar_ and creating a cluster.## Content
* Vert.x
* Microservices
* Asynchronous non-blocking development model
* Composition of async operations
* Distributed event bus
* Database access
* Providing and Consuming REST APIs
* Async RPC on the event bus
* Microservice discovery## Want to improve this lab ?
Forks and PRs are definitely welcome !
## Building
To build the code:
mvn clean install
To build the documentation:
cd docs
docker run -it -v `pwd`:/documents/ asciidoctor/docker-asciidoctor "./build.sh" "html"
# or for fish
docker run -it -v (pwd):/documents/ asciidoctor/docker-asciidoctor "./build.sh" "html"