Vertx.io从Java服务器启动JS Verticle

时间:2015-10-05 19:11:09

标签: javascript java vert.x

使用vertx.io 3.0.0和Java 1.8.0_60

我试图从JAVA启动javascript Verticle。我找到了以下文档here,说明了如何执行此操作。但它在我目前的背景下实际上是行不通的。

//main class
vertx.deployVerticle("com.mycompany.services.DiscountServices");
vertx.deployVerticle("com.mycompanyservices.SupplierServices");
vertx.deployVerticle("com.mycompany.services.ReportTypeServices");
vertx.deployVerticle("RELATIVE_PATH_TO_FILE/verticle.js");

//verticle.js
// from the example: http://vertx.io/docs/vertx-core/js/#_writing_verticles
declare var vertx;    
var eb = new vertx.EventBus()
eb.consumer("cbweb.validation", (message:any) => {
    console.log(message);
});
console.log("Validation.js ready")

在这种情况下,java垂直(前三个)正确启动,当JS Verticle被调用时我有以下错误java.lang.ClassNotFoundException

  • 文件的路径是正确的。
  • 尝试使用js:为路径添加前缀,以便在没有任何机会的情况下调用正确的加载程序。

关于如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:2)

我在google group for Vertx.io上提出了问题。以下是按问题解决的答案。

如果你使用Maven:

<dependency>
    <groupId>io.vertx</groupId>
    <artifactId>vertx-lang-js</artifactId>
    <version>3.0.0</version>
</dependency>

摇篮:

io.vertx:vertx-lang-js:3.0.0