用intellij idea创建一个基于Vert.x框架的http服务器程序

用intellij idea创建一个基于Vert.x框架的http服务器程序


一个http服务器

1.创建一个Maven程序。
用intellij idea创建一个基于Vert.x框架的http服务器程序_第1张图片
如果你的idea没有maven选项,请参照
使用IntelliJIDEA配置Maven

2.我的第一个Vert.x 3 应用
请参照quanke先生的教程进行,你可以右击项目,选择show in files
在文件管理器中看到当前项目的目录。

编译和运行都可以直接点击“RUN”。

如果运行时提示如下错误:

java.net.BindException: 地址已在使用

at sun.nio.ch.Net.bind0(Native Method)
at sun.nio.ch.Net.bind(Net.java:433)
at sun.nio.ch.Net.bind(Net.java:425)
......

你应该把8080修改为8055或者其他未使用的端口。
修改后:

MyFirstVerticle.java

......
r.response().end("

Hello from my first " + "Vert.x 3 application

"
); }).listen(8055, result -> {......

MyFirstVerticleTest.java

......
 vertx.createHttpClient().getNow(8080, "127.0.0.1", "/", response -> {......

3.项目打包。
当你按照教程设置好pom.xml后
选择 View->Tool Windows->Maven Projects
在弹出的视图中右击package 选择 Run Maven Build
即可打包,打包后的jar文件保存在 target 目录下
用intellij idea创建一个基于Vert.x框架的http服务器程序_第2张图片

4.打开 127.0.0.1:8055 8055 可能为其他,根据你写的代码。

看到如下内容:

用intellij idea创建一个基于Vert.x框架的http服务器程序_第3张图片

1. 我的第一个Vert.x 3 应用
2.使用IntelliJIDEA配置Maven

你可能感兴趣的:(vert-x)