Reputation: 338
{ vertx run vertcle1.groovy}
{container.deployVerticle("verticle1.groovy"}
What happens in the background when these two statements are executed?
Upvotes: 5
Views: 798
Reputation: 2692
1st command runs another JVM
2nd loads verticle in a separate classloader but inside current vertx process
Upvotes: 5