gpt4 book ai didi

json - 使用 Google Web Toolkit 构建 JSON 服务器端

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

Google Web Toolkit 有一个 JSON 库 (com.google.gwt.json.client)。该名称的“客户端”部分让我怀疑它不适合在服务器端使用。服务器端 RPC 方法中的以下代码证实了我的怀疑:

System.out.println("attempting to make JSONArray");
JSONArray test = new JSONArray();
System.out.println("Made JSONArray");

通过抛出 ClassNotFound(JSONArray) 异常。我需要构建一些 JSON 服务器端。

1)我认为我不能在服务器上使用 com.google.gwt.json.client 包是否正确? 2)如果是这样,是否有一个很好的替代方案,其接口(interface)与我可以用来在服务器上构造 JSON 的接口(interface)大致相同?

我正在 App Engine 上运行我的应用程序,以防万一。

最佳答案

1) Am I correct in believing that I can't use the com.google.gwt.json.client package on the server?



正确的。该类包含许多原生 JS 方法——重要的东西,如 get() -- 并且旨在被编译成 JavaScript 以便在客户端使用。

至于 2),正如您已经发现的那样,您从 json.org 找到的库很好,而且我还听说过关于 gson 的有希望的事情。 .

关于json - 使用 Google Web Toolkit 构建 JSON 服务器端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3276419/

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