Vert .x
什么是Vert .x
?
Vert.x框架基于事件和异步,依托于全异步Java服务器Netty,并扩展了很多其他特性,以其轻量、高性能、支持多语言开发
Hello world
创建一个简单的项目https://start.vertx.io/ 无需添加任何依赖
public class MainVerticle extends AbstractVerticle {
@Override
public void start(Promise startPromise) throws Exception {
vertx.createHttpServer().requestHandler(req -> {
req.response()
.putHeader("content-type", "text/plain")
.end("Hello from Vert.x!");
}).listen(8888, http -> {
if (http.succeeded()) {
startPromise.complete();
System.out.println("HTTP server started on port 8888");
} else {
startPromise.fail(http.cause());
}
});
}
这个代码第一眼看上去就很复杂,但是其实仔细分析一下,会感觉其实很好理解
大致就是Vert.x
创建了一个Http
的服务,并添加请求头和响应的内容,监听8888
的端口,当服务创建成功时输出HTTP server started on port 8888
Run
下面两个命令很重要切记
打包
$ mvn package
运行
$ mvn exec:java
HTTP server started on port 8888
一月 28, 2021 11:14:37 下午 io.vertx.core.impl.launcher.commands.VertxIsolatedDeployer
信息: Succeeded in deploying verticle
访问
$ curl http://127.0.0.1:8888/
Hello from Vert.x!
web
项目
添加Vert.x Web
依赖
io.vertx
vertx-web
public class MainVerticle extends AbstractVerticle {
@Override
public void start(Promise startPromise) throws Exception {
// 创建一个路由
Router router = Router.router(vertx);
// 在每个路径和HTTP方法中为所有传入请求安装处理程序
router.route().handler(context -> {
// 获取请求的地址
String address = context.request().connection().remoteAddress().toString();
// Get the query parameter "name"
MultiMap queryParams = context.queryParams();
String name = queryParams.contains("name") ? queryParams.get("name") : "unknown";
// Write a json response
context.json(
new JsonObject()
.put("name", name)
.put("address", address)
.put("message", "Hello " + name + " connected from " + address)
);
});
// Create the HTTP server
vertx.createHttpServer()
// Handle every request using the router(使用路由器处理每个请求)
.requestHandler(router)
// Start listening
.listen(8888)
// Print the port
.onSuccess(server ->
System.out.println(
"HTTP server started on port " + server.actualPort()
)
);
}
}
访问
$ curl http://127.0.0.1:8888/
{"name":"unknown","address":"127.0.0.1:3402","message":"Hello unknown connected from 127.0.0.1:3402"}
$ curl http://127.0.0.1:8888?name=shaojie
{"name":"shaojie","address":"127.0.0.1:3605","message":"Hello shaojie connected from 127.0.0.1:3605"}
Vert.x-Web基本概念
Router
是Vert.x-Web的核心概念之一。它是保持零个或多个的对象 Routes
。
路由器接收一个HTTP请求,并找到该请求的第一个匹配路由,然后将请求传递到该路由。
路由可以具有与之关联的处理程序,该处理程序然后接收请求。然后,您可以对请求进行处理,然后结束请求或将其传递给下一个匹配的处理程序。
创建一个简单的路由:
HttpServer server = vertx.createHttpServer();
Router router = Router.router(vertx);
router.route().handler(ctx -> {
HttpServerResponse response = ctx.response();
response.putHeader("content-type", "text/plain");
response.end("Hello World from Vert.x-Web!");
});
server.requestHandler(router).listen(8080);
处理请求并调用下一个处理程序
当Vert.x-Web决定将请求路由到匹配的路由时,它将在的实例中传递该路由的处理程序RoutingContext
。路由可以具有不同的处理程序,您可以使用 handler
如果您未在处理程序中结束响应,则应进行调用,next
以便其他匹配的路由可以处理请求(如果有)。
Route route = router.route("/some/path/");
route.handler(ctx -> {
HttpServerResponse response = ctx.response();
// 启用分块响应,因为我们将在执行其他处理程序时添加数据。仅一次且仅当多个处理程序进行输出时才需要这样做
response.setChunked(true);
response.write("route1\n");
// 延迟5秒后呼叫下一条匹配路线
ctx.vertx().setTimer(5000, tid -> ctx.next());
});
route.handler(ctx -> {
HttpServerResponse response = ctx.response();
response.write("route2\n");
// 延迟5秒后呼叫下一条匹配路线
ctx.vertx().setTimer(5000, tid -> ctx.next());
});
route.handler(ctx -> {
HttpServerResponse response = ctx.response();
response.write("route3");
// Now end the response
ctx.response().end();
});
$ curl http://127.0.0.1:8080/some/path/
route1
route2
route3
在上面的示例route1
中,将响应写入响应,然后在5秒钟后将route2
其写入响应,然后在5秒钟后将route3
其写入响应,并结束响应。(注意,所有这些都在没有任何线程阻塞的情况下发生。)
简单的回应
处理程序非常强大,因为它们允许您构建非常复杂的应用程序。对于简单的响应,例如,直接从vert.x API返回异步响应,路由器包括处理程序的快捷方式,以确保:
- 响应以JSON返回。
- 如果处理处理程序时发生错误,则返回正确的错误。
- 如果序列化对JSON的响应时出错,则返回正确的错误。
router
.get("/some/path")
// 此处理程序将确保将响应序列化为json,并将内容类型设置为“application/json”
.respond(
ctx -> Future.succeededFuture(new JsonObject().put("hello", "world")));
router
.get("/some/path")
// 这个处理程序将确保Pojo被序列化为json 内容类型设置为“application/json”
.respond(
ctx -> Future.succeededFuture(new Pojo()));
$ curl http://127.0.0.1:8080/some/path/
{"hello":"world"}
但是,如果提供的函数调用write
或,您也可以将其用于非JSON响应end
:
router
.get("/some/path")
.respond(
ctx -> ctx
.response()
.putHeader("Content-Type", "text/plain")
.end("hello world!"));
router
.get("/some/path")
// 在这种情况下,处理程序确保连接已经结束
.respond(
ctx -> ctx
.response()
.setChunked(true)
.write("Write some text..."));
$ curl http://127.0.0.1:8080/some/path/
hello world!
$ curl http://127.0.0.1:8080/some/path/
Write some text...
路由
按确切路径路由
Route route = router.route().path("/some/path/");
route.handler(ctx -> {
// 此处理程序将被以下请求路径调用:
// `/some/path/`
// `/some/path//`
// but not:
// `/some/path` 路径的结束斜杠使其严格
// `/some/path/subdir`
HttpServerResponse response = ctx.response();
response.putHeader("content-type", "text/plain");
response.end("/some/path/");
});
// 不以斜杠结束的路径不严格 后面的斜杠是可选的 它们可以任意匹配
Route route2 = router.route().path("/some/path");
route2.handler(ctx -> {
// 此处理程序将被以下请求路径调用:
// `/some/path`
// `/some/path/`
// `/some/path//`
// but not:
// `/some/path/subdir`
HttpServerResponse response = ctx.response();
response.putHeader("content-type", "text/plain");
response.end("/some/path");
});
通过以某些内容开头的路径进行路由
Route route = router.route().path("/some/path/*");
route.handler(ctx -> {
// 此处理程序将被以下请求路径调用:
// `/some/path/`, e.g.
// `/some/path/`
// `/some/path/subdir`
// `/some/path/subdir/blah.html`
// but not:
// `/some/path` 该路径是严格的,因为它以斜杠结束
// `/some/bath`
HttpServerResponse response = ctx.response();
response.putHeader("content-type", "text/plain");
response.end("/some/path/*");
});
通过HTTP方法路由
Route route = router.route(HttpMethod.POST, "/some/path/");
route.handler(ctx -> {
// 对于以/some/path/开头的URI路径的任何POST请求,都会调用此处理程序
HttpServerResponse response = ctx.response();
response.putHeader("content-type", "text/plain");
response.end("method--/some/path/");
});
直接调用
get
、 post
、put
和delete
等以HTTP方法名称命名
router
.get("/some/path")
.respond(
ctx -> ctx
.response()
.putHeader("Content-Type", "text/plain")
.end("hello world!"));
如果要指定一个路由将匹配多个HTTP方法,则可以method
多次调用:
Route route = router.route().method(HttpMethod.POST).method(HttpMethod.PUT);
route.handler(ctx -> {});
如果要创建需要自定义HTTP动词的应用程序(例如WebDav
服务器),则可以指定自定义动词
Route route = router.route()
.method(HttpMethod.valueOf("MKCOL"))
.handler(ctx -> {
// 任何MKCOL请求都将调用此处理程序
});
路线顺序
参考 处理请求并调用下一个处理程序
如果要覆盖路由的默认顺序,可以使用order
,指定一个整数值。
路由在创建时被分配一个与添加到路由器的顺序相对应的顺序,第一个路由编号0
,第二个路由编号1
,依此类推。
通过指定路线的顺序,您可以覆盖默认顺序。订单也可以是负数,例如,如果您要确保在路线编号之前评估一条路线0
。
router
.route("/some/path/")
.order(1)
.handler(ctx -> {
HttpServerResponse response = ctx.response();
response.write("route1\n");
// Now call the next matching route
ctx.next();
});
router
.route("/some/path/")
.order(0)
.handler(ctx -> {
HttpServerResponse response = ctx.response();
// 启用分块响应,因为我们将在执行其他处理程序时添加数据。
// 仅一次且仅当多个处理程序进行输出时才需要这样做。
response.setChunked(true);
response.write("route2\n");
// Now call the next matching route
ctx.next();
});
router
.route("/some/path/")
.order(2)
.handler(ctx -> {
HttpServerResponse response = ctx.response();
response.write("route3");
// Now end the response
ctx.response().end();
});
$ curl http://127.0.0.1:8080/some/path/
route2
route1
route3
关于路由得东西太多,后面单独整理一期,单独研究一下,刚开始学习的话,还是先会用比较好
捕获路径参数
router
.route(HttpMethod.POST, "/catalogue/products/:productType/:productID/")
.handler(ctx -> {
String productType = ctx.pathParam("productType");
String productID = ctx.pathParam("productID");
HttpServerResponse response = ctx.response();
response.putHeader("content-type", "text/plain");
response.end(productType + "--" + productID);
});
$ curl -X POST http://127.0.0.1:8080/catalogue/products/String/123/
String--123
如果对编程感兴趣,请关注我的个人博客 https://www.lzmvlog.top/
本文由博客一文多发平台 OpenWrite 发布!