我正在对URL进行简单的获取请求:-
http://localhost:9061/demo/v2/outcome?class=ABC¶ms=(Id=1bf854a3-3146-4a94-a444-1a609fe1893a,ver=1,required=true)
我正在使用webclient发出如下请求:-
FluxExchangeResult<String> result = webTestClient.get().uri(URL)
.accept(MediaType.APPLICATION_JSON).header("Authorization",
"r0u+.vj6/+2HK.\\uB76F\\u299C")
.exchange().expectStatus().isOk().returnResult(String.class);
其中URL是上述URL。 当我发出此请求时,我得到了404,因为我的网址以以下格式编码
http://localhost:9061/demo/v2/outcome?class=ABC¶ms=(Id%3D1bf854a3-3146-4a94-a444-1a609fe1893a,ver%3D1,required%3Dtrue)
为什么花括号中的'='仅被编码,我该如何纠正呢?