我在Maven项目中有以下代码:
package hello;
import org.vertx.java.core.Handler;
import org.vertx.java.core.http.HttpServerRequest;
import org.vertx.java.deploy.Verticle;
public class Server extends Verticle {
public void start() {
vertx.createHttpServer().requestHandler(new Handler<HttpServerRequest>() {
@Override
public void handle(HttpServerRequest req) {
System.out.println("Got request: " + req.uri);
System.out.println("Headers are: ");
for (String key : req.headers().keySet()) {
System.out.println(key + ":" + req.headers().get(key));
}
req.response.headers().put("Content-Type", "text/html; charset-UTF-8");
req.response.end("<html><body><h1>Hello from vert.x!</h1></body></html>");
}
}).listen(4000);
}
}
我在pom.xml中也有以下依赖:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>3.4.1</version>
</dependency>
<dependency>
<groupId>org.vert-x</groupId>
<artifactId>vertx-platform</artifactId>
<version>1.2.3.final</version>
</dependency>
我尝试使用以下配置在IntelliJ中运行Java应用程序:
我收到很多错误:
错误:(7,8)java:hello.Server不是抽象的,也不会覆盖 抽象方法停止(io.vertx.core.Future)in io.vertx.core.Verticle错误:(12,57)java:找不到符号
symbol:变量uri位置:类型的变量req io.vertx.core.http.HttpServerRequest错误:(14,48)java:找不到 符号符号:方法keySet()位置:接口 io.vertx.core.MultiMap错误:(17,20)java:找不到符号
symbol:变量响应位置:类型的变量req io.vertx.core.http.HttpServerRequest错误:(18,20)java:找不到 符号符号:变量响应位置:类型的变量req io.vertx.core.http.HttpServerRequest错误:(9,9)java:找不到 符号符号:变量vertx位置:类hello.Server
但是,当我从这里下载vert.x jar文件时: http://vertx.io/download/
并将它们放在项目结构中,然后相同的代码成功编译。
我可能需要在pom.xml中使用另一个依赖项,但我不知道它应该是什么。
答案 0 :(得分:2)
你不应该有依赖:
<dependency>
<groupId>org.vert-x</groupId>
<artifactId>vertx-platform</artifactId>
<version>1.2.3.final</version>
</dependency>
因为它与3.x上的Vert.x 1.2和您的应用程序有关。在这种情况下,您的主要类应该是:
io.vertx.core.Launcher
或者,您可以从那里添加main
方法和调试,例如:
public class Server extends Verticle {
public static void main(String[] args) {
Vertx.vertx().deployVerticle(new Server());
}
}
现在您无需担心添加启动器配置文件,只需右键单击并运行/调试。