Vertx.io 从 Java 服务器启动 JS Verticle
Vertx.io start JS Verticle from Java server
使用 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:
以调用正确的加载器,但没有任何机会。
关于如何做到这一点有什么想法吗?
我在 google group for Vertx.io 上问了这个问题。这是按问题修复的答案。
如果你使用 Maven:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-js</artifactId>
<version>3.0.0</version>
</dependency>
Gradle:
io.vertx:vertx-lang-js:3.0.0
使用 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:
以调用正确的加载器,但没有任何机会。
关于如何做到这一点有什么想法吗?
我在 google group for Vertx.io 上问了这个问题。这是按问题修复的答案。
如果你使用 Maven:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-js</artifactId>
<version>3.0.0</version>
</dependency>
Gradle:
io.vertx:vertx-lang-js:3.0.0