web-dev-qa-db-ja.com

WebClientリクエストでqueryパラメータを追加します

私はSpring Webfluxを使用しています。私は要求を取って別のサービスを呼び出すために同じ要求を使用しています。しかし、クエリパラメータを追加する方法はわかりません。これは私のコードです

@RequestMapping(value= ["/ptta-service/**"])
suspend fun executeService(request: ServerHttpRequest): ServerHttpResponse {

    val requestedPath = if (request.path.toString().length > 13) "" else request.path.toString().substring(13)

    return WebClient.create(this.dataServiceUrl)
                    .method(request.method ?: HttpMethod.GET)
                    .uri(requestedPath)
                    .header("Accept", "application/json, text/plain, */*")
                    .body(BodyInserters.fromValue(request.body))
                    .retrieve()
                    .awaitBody()
                    // But how about query parameters??? How to add those
}
 _

コードはkotlinにありますが、Java)も役立ちます。

3
nicholasnet

詳細については、 URI でLambda式を使用してクエリパラメータを追加できます webclient.urispec

 return WebClient.create(this.dataServiceUrl)
                .method(request.method ?: HttpMethod.GET)
                .uri(builder -> builder.path(requestedPath).queryParam("q", "12").build())
                .header("Accept", "application/json, text/plain, */*")
                .body(BodyInserters.fromValue(request.body))
                .retrieve()
                .awaitBody()
 _
0
Deadpool