admin管理员组文章数量:1279011
Currently I have two verticles, WebVerticle and Task Verticle
I am deploying them like this :
Future<String> webVerticleDeployment = vertx.deployVerticle(new WebVerticle(loadedConfig, router));
Future<String> taskVerticleDeployment = vertx.deployVerticle(new TaskVerticle());
Future.all(Arrays.asList(webVerticleDeployment, taskVerticleDeployment)
....
Imagine if I have 100 verticles, this code will get very messy and big. What is the correct way to deploy n number of verticles in a Vert.x app?
Thanks a lot!
本文标签: javaWhat is the correct way to deploy n verticles in VertxStack Overflow
版权声明:本文标题:java - What is the correct way to deploy n verticles in Vert.x - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741300304a2371053.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论