All Projects → jponge → Vertx In Action

jponge / Vertx In Action

Licence: mit
Examples for the Manning "Vert.x in Action" book

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Vertx In Action

Orleans
Orleans is a cross-platform framework for building distributed applications with .NET
Stars: ✭ 8,131 (+5967.91%)
Mutual labels:  reactive, scalability, distributed-systems
Aws Sdk
Using vertx-client for AWS SDK v2
Stars: ✭ 38 (-71.64%)
Mutual labels:  reactive, vertx, scalability
Vertx Sql Client
High performance reactive SQL Client written in Java
Stars: ✭ 690 (+414.93%)
Mutual labels:  reactive, vertx, scalability
reacted
Actor based reactive java framework for microservices in local and distributed environment
Stars: ✭ 17 (-87.31%)
Mutual labels:  distributed-systems, reactive, scalability
Vertx Examples
Vert.x examples
Stars: ✭ 3,202 (+2289.55%)
Mutual labels:  reactive, vertx, examples
Vertx Guide For Java Devs
Vert.x 3 guide for Java developers
Stars: ✭ 500 (+273.13%)
Mutual labels:  reactive, vertx, book
Cloudi
A Cloud at the lowest level!
Stars: ✭ 352 (+162.69%)
Mutual labels:  reactive, scalability, distributed-systems
Reactivemanifesto
The Reactive Manifesto
Stars: ✭ 542 (+304.48%)
Mutual labels:  reactive, scalability, distributed-systems
Ethereum Development With Go Book
📖 A little book on Ethereum Development with Go (golang)
Stars: ✭ 754 (+462.69%)
Mutual labels:  book, examples
Microservices Connector
Inter-Service communication framework, support for microservice architecture and distributed system
Stars: ✭ 17 (-87.31%)
Mutual labels:  scalability, distributed-systems
Vertx Web
HTTP web applications for Vert.x
Stars: ✭ 853 (+536.57%)
Mutual labels:  reactive, vertx
Kvision
Object oriented web framework for Kotlin/JS
Stars: ✭ 658 (+391.04%)
Mutual labels:  reactive, vertx
Awesome Scalability
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
Stars: ✭ 36,688 (+27279.1%)
Mutual labels:  scalability, distributed-systems
Awesome Scalability Toolbox
My opinionated list of products and tools used for high-scalability projects
Stars: ✭ 34 (-74.63%)
Mutual labels:  scalability, distributed-systems
Translations
🐼 Chinese translations for classic IT resources
Stars: ✭ 6,074 (+4432.84%)
Mutual labels:  reactive, distributed-systems
Ddia
《Designing Data-Intensive Application》DDIA中文翻译
Stars: ✭ 10,458 (+7704.48%)
Mutual labels:  book, distributed-systems
Brooklin
An extensible distributed system for reliable nearline data streaming at scale
Stars: ✭ 668 (+398.51%)
Mutual labels:  scalability, distributed-systems
Vertx Mqtt
Vert.x MQTT
Stars: ✭ 117 (-12.69%)
Mutual labels:  reactive, vertx
Rxjs In Action
Code sample repository
Stars: ✭ 117 (-12.69%)
Mutual labels:  reactive, book
Advanced Vertx Guide
A gentle guide for advanced Vert.x users
Stars: ✭ 118 (-11.94%)
Mutual labels:  reactive, vertx

Build Status

Vert.x in Action book examples

👋 Welcome!

These are the working examples for Vert.x in Action (ISBN 9781617295621) from Manning Publications Co and written by Julien Ponge.

How to open and run the examples?

Readers of the book should directly open projects from subfolders: they are all independent.

You will find both Gradle and Maven build descriptors for each project, so you can load the projects with text editors or integrated development environments such as IntelliJ IDEA, Eclipse IDE or Microsoft Visual Studio Code.

As an example if you want to build the chapter 1 with Gradle, open a terminal and run:

$ cd chapter1
$ ./gradlew build

or with Maven run:

$ cd chapter1
$ mvn package

The book examples work best using some Unix environment: Linux, macOS or the Windows Subsystem for Linux from Microsoft.

What is the structure of the repository?

The following folders are available:

  • chapter1
  • chapter2
  • chapter3
  • chapter4
  • chapter5
  • chapter6
  • part2-steps-challenge (covers chapters 7 to 12)
  • chapter13

The master branch is where you must look for working examples.

Chapter 12 provides variants of the same code which you can get from the following branches:

  • chapter12/public-api-with-timeouts
  • chapter12/public-api-with-circuit-breaker
  • chapter12/public-api-with-circuit-breaker-and-timeouts

Will there be updates?

The book went to production with Manning in August 2020.

This repository contains samples against Eclipse Vert.x 4.0.3 (see tag vertx-4.0.3) that was released in March 2021.

At my own discretion I may update to newer versions of Vert.x when they are published.

Note that the Vert.x core team has made a goal of ensuring that Vert.x 4.0.3 will work against all examples in this repository.

Can I contribute?

Due to the nature of this project I will not accept any contribution to this repository.

What if I have a question / issue?

If you are a Manning customer then you have access to forums. Please refer to Vert.x in Action on the Manning website where a link to the forum is provided.

If you have a question on Vert.x then please get in touch with the Eclipse Vert.x community. There are several channels that you can use including public mailing-lists and chat.

If you have a problem with your book order or any special request, then please contact Manning.

Errata

November 2020

Due to a peculiarities in how TestContainers supports Docker Compose it may be necessary to explicitly await for containers to be exposed, or test executions can sometimes fail because a container port hasn't been exposed yet.

This can be done by calling the withExposedService method on a DockerComposeContainer instance, as in:

@Container
private static final DockerComposeContainer CONTAINERS = new DockerComposeContainer(new File("../docker-compose.yml"))
  .withExposedService("mongo_1", 27017);

This fix has been applied to the tests in part2-steps-challenge.

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].