2

I am new to Vert.X , I am interested in knowing how the module system is different in Vert.X 3 than 2 , I couldn't find any useful documentation for same.

Punit Goel
  • 59
  • 1
  • 6

1 Answers1

1

Vert.x 3 does not provide a module system and instead should be considered as a library and you are responsible for handling classloading.

Vert.x 3 provides however a service deployment, that you can use to package vertx services https://vertx.io/docs/vertx-service-factory/java/ .

Julien Viet
  • 335
  • 1
  • 3