如何从IntelliJ IDEA启动Vert.x服务器?
2022-09-01 08:03:14
如何从IntelliJ IDEA内部启动一个简单的Vert.x服务器?
我的如下:build.gradle
apply plugin: 'java'
version = '3.0.0'
repositories {
mavenCentral()
}
dependencies {
compile 'io.vertx:vertx-core:3.0.0'
}
我的Vertx服务器如下:MyVertex.java
package com.example;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.Future;
public class MyVerticle extends AbstractVerticle {
@Override
public void start(Future<Void> fut) {
vertx.createHttpServer()
.requestHandler(r -> r.response().end("<h1>Hello</h1>"))
.listen(8081);
}
}
我的IntelliJ运行配置如下,作为主类:io.vertx.core.Starter
但是当我使用我的运行配置运行它时,我收到以下错误消息:
Error: Could not find or load main class run
VM 选项(在“运行配置”中)是我需要安装并添加到路径中的,还是如何开始 Vert.x-server 开发?run