- 浏览: 3851 次
- 性别:
最新评论
文章列表
Vert.x之旅(二):Route
- 博客分类:
- Vert.x
一个Route对象可以包含零个或多个Route;
一个Route处理一个HTTP请求,找到第一个匹配请求路径,并传递参数给它。
该Route在接收请求后有关联的程序处理,可以处理、结束,或者传递给下一个匹配的程序处理。
举例:
HttpServer server = vertx.createHttpServer();
一些翻译,一些理解,自我旅程,记录点点。
依赖库
Maven:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web</artifactId>
<version>3.2.1</version>
</dependency>
Gradle:
dependencies {
compile 'io.vertx:vertx-web:3.2.1'
}
Helloworld
HttpSe ...