gpt4 book ai didi

java - 无法在 URL 中记录 JSON

转载 作者:行者123 更新时间:2023-12-02 04:20:03 25 4
gpt4 key购买 nike

在我的 Rest API 中,应该可以检索边界框内的数据。因为边界框有四个坐标,所以我想以这种方式设计 GET 请求,让它们接受 JSON 形式的边界框。因此,我需要能够将 JSON 字符串作为 URL 参数发送和记录。

测试本身有效,但我无法使用 Spring RestDocs (1.0.0.RC1) 记录这些请求。我用更简单的方法重现了这个问题。见下文:

  @Test public void ping_username() throws Exception
{
String query = "name={\"user\":\"Müller\"}";
String encodedQuery = URLEncoder.encode(query, "UTF-8");
mockMvc.perform(get(URI.create("/ping?" + encodedQuery)))
.andExpect(status().isOk())
.andDo(document("ping_username"));
}

当我删除 .andDo(document("ping_username")) 时,测试通过。

堆栈跟踪:

java.lang.IllegalArgumentException: Illegal character in query at index 32: http://localhost:8080/ping?name={"user":"Müller"}
at java.net.URI.create(URI.java:852)
at org.springframework.restdocs.mockmvc.MockMvcOperationRequestFactory.createOperationRequest(MockMvcOperationRequestFactory.java:79)
at org.springframework.restdocs.mockmvc.RestDocumentationResultHandler.handle(RestDocumentationResultHandler.java:93)
at org.springframework.test.web.servlet.MockMvc$1.andDo(MockMvc.java:158)
at application.rest.RestApiTest.ping_username(RestApiTest.java:65)

收到对 URL 进行编码的建议后,我尝试了它,但问题仍然存在。

用于在我的测试中创建 URI 的字符串现在为 /ping?name%3D%7B%22user%22%3A%22M%C3%BCller%22%7D

我检查了堆栈跟踪中出现的类 MockMvcOperationRequestFactory,并在第 79 行执行了以下代码:

URI.create(getRequestUri(mockRequest)
+ (StringUtils.hasText(queryString) ? "?" + queryString : ""))

这里的问题是使用了未编码的字符串(在我的例子中http://localhost:8080/ping?name={"user":"Müller"})并且创建URI 失败。

备注:

安迪·威尔金森的回答就是问题的解决方案。尽管我认为 David Sinfield 是对的,并且 URL 中应避免使用 JSON 以保持简单。对于我的边界框,我将使用逗号分隔的字符串,就像 WMS 1.1 中使用的那样。 :BBOX=x1,y1,x2,y2

最佳答案

您没有提到您正在使用的 Spring REST 文档的版本,但我猜测问题出在 URIUtil 上。我无法确定,因为我看不到 URIUtil 来自哪里。

无论如何,使用 JDK 的 URLEncoder 对我来说适用于 Spring REST Docs 1.0.0.RC1:

String query = "name={\"user\":\"Müller\"}";
String encodedQuery = URLEncoder.encode(query, "UTF-8");
mockMvc.perform(get(URI.create("/baz?" + encodedQuery)))
.andExpect(status().isOk())
.andDo(document("ping_username"));

然后您可以在服务器端使用URLDecoder.decode来获取原始JSON:

URLDecoder.decode(request.getQueryString(), "UTF-8")

关于java - 无法在 URL 中记录 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32885541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com