Query Parameter

Like the usual Spring Web annotations, you can use the @RequestParam annotation to specify the query parameters to be used in the request.

    @GetMapping(value = "/getRequest-withQueryParam",
        produces = MediaType.APPLICATION_JSON_VALUE)
    Mono<ResponseEntity<String>> getRequestWithQueryParam(@RequestParam("testParam") String param);