Punit Goel
Punit Goel

Reputation: 59

Modules in Vert.X 3

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

Answers (1)

Julien Viet
Julien Viet

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

Related Questions