Обработка сотен маршрутов в рекомендациях Vert.x - PullRequest
1 голос
/ 13 октября 2019

Пожалуйста, посмотрите на фрагмент кода ниже. Теперь предположим, что у меня будут сотни сущностей типа «человек». Как бы вы написали такую ​​вещь, чтобы она была чистой, сжатой, эффективной, хорошо структурированной? Tx

class HttpEntryPoint : CoroutineVerticle() {

    private suspend fun person(r: RoutingContext) {
        val res = vertx.eventBus().requestAwait<String>("/person/:id", "1").body()
        r.response().end(res)
    }

    override suspend fun start() {
        val router = Router.router(vertx)
        router.get("/person/:id").coroutineHandler { ctx -> person(ctx) }
        vertx.createHttpServer()
            .requestHandler(router)
            .listenAwait(config.getInteger("http.port", 8080))
    }

    fun Route.coroutineHandler(fn: suspend (RoutingContext) -> Unit) {
        handler { ctx ->
            launch(ctx.vertx().dispatcher()) {
                try {
                    fn(ctx)
                } catch (e: Exception) {
                    e.printStackTrace()
                    ctx.fail(e)
                }
            }
        }
    }
}

1 Ответ

3 голосов
/ 13 октября 2019

Вы ищете subrouter.

https://vertx.io/docs/vertx-web/java/#_sub_routers

От макушки моей головы:

override suspend fun start() {
    router.mountSubrouter("/person", personRouter(vertx)) 
    // x100 if you'd like
}

Тогда в вашем PersonRouter.kt:

fun personRouter(vertx: Vertx): Router {
    val router = Router.router(vertx)
    router.get("/:id").coroutineHandler { ctx -> person(ctx) }
    // More endpoints
    return router
}
...