Reputation: 59
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.
Upvotes: 2
Views: 374
Reputation: 335
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/ .
Upvotes: 1