我在同一台机器上使用Vertx群集(开发模式)。 我正在使用guice来注入一些pojo。
然而,当我尝试增加Verticle实例时,我得到:
java.lang.IllegalArgumentException: Can't specify > 1 instances for already created verticle
at io.vertx.core.impl.DeploymentManager.deployVerticle(DeploymentManager.java:70)
at io.vertx.core.impl.VertxImpl.deployVerticle(VertxImpl.java:516)
at io.vertx.core.impl.VertxImpl.deployVerticle(VertxImpl.java:511)
at com.mycompany.world_map_service.web.starter.StarterVerticle.lambda$main$0(StarterVerticle.java:39)
这是我如何配置它:
public static void main(String[] args) throws Exception {
final Logger logger = Logger.getLogger(StarterVerticle.class);
ClusterManager mgr = new HazelcastClusterManager();
VertxOptions options = new VertxOptions().setClusterManager(mgr);
Vertx.clusteredVertx(options, res -> {
DeploymentOptions deploymentOptions = new DeploymentOptions().setConfig(config);
if (res.succeeded()) {
Vertx vertx = res.result();
// Injector injector = Guice.createInjector(new AppInjector(vertx));
Injector injector = Guice.createInjector(new AppInjector(vertx, deploymentOptions));
vertx.deployVerticle(injector.getInstance(VertxHttpServerVerticle.class), deploymentOptions.setInstances(3));
...
}
这是我的AppInjector课程:
public class AppInjector extends AbstractModule {
private Vertx vertx = null;
private Context context = null;
DeploymentOptions deploymentOptions = null;
public AppInjector(Vertx vertx, DeploymentOptions deploymentOptions) {
this.vertx = vertx;
this.context = vertx.getOrCreateContext();
this.deploymentOptions = deploymentOptions;
}
@Override
protected void configure() {
bind(LocationService.class).to(LocationServiceImpl.class).in(Singleton.class);
bind(LocationServiceDAO.class).to(LocationServiceDaoImpl.class).in(Singleton.class);
bind(RedisRepo.class).toProvider(() -> {
return new RedisRepo(deploymentOptions.getConfig());
});
bind(Neo4jRepo.class).toProvider(() -> {
return new Neo4jRepo(deploymentOptions.getConfig());
});
}
}
知道我为什么碰撞?
我知道我应该使用名称:com.mycompany.world_map_service.web.http.VertxHttpServerVerticle
但是如果我注入依赖项,它们将被复制为每个实例,不是吗?
答案 0 :(得分:0)
我知道我在这里有点晚了,但是这里的“为什么”可能会在路上发现这个问题。请按照错误消息:
无法指定>已创建Verticle的1个实例
您正在使用Guice创建Verticle的实例,然后尝试部署3个实例,但您已经创建了Verticle实例:
vertx.deployVerticle(injector.getInstance(VertxHttpServerVerticle.class), deploymentOptions.setInstances(3));
这就是你要传递类名的原因。您可以在io.vertx.core.impl.DeploymentManager中查看流程,该流程也解释了上述错误。
我知道我应该使用名字: “com.mycompany.world_map_service.web.http.VertxHttpServerVerticle”但是 比如我注入依赖项,它们将被重复 实例不会吗?
我不确定你的意思。如果您由于某种原因不想复制数据/依赖项,也许您可能涉及另一个对象或单例,或者利用Vertx's Shared Data?