在 GWT 入口点进行对象化

发布于 2024-12-25 12:32:00 字数 356 浏览 2 评论 0原文

我对 Google Web Toolkit (GWT) 和 Google Apps Engine 非常陌生。我想直接在入口点使用 Objectify,以便可以在我的应用程序中使用 GWT。 (我使用java)

是否可以将Objectify实体直接加载到入口点而不使用任何对服务器端的调用?我已经阅读了一些关于该主题的教程,但它们都要么进行 RPC 调用,要么使用其他 servlet。

或者

是否可以在入口点之外的 servlet 中使用 GWT 类(例如 Label、Textbox 等)?

如果以上任何问题得到解答,我都可以。这是一个非常普遍的问题,所以如果您对它们有任何参考,我也将不胜感激。如果我需要补充什么,请告诉我,谢谢!

I'm very new to Google Web Toolkit (GWT) and Google Apps Engine. I want to use Objectify directly in the entry point so that I can utilize GWT in my apps. (I use java)

Is it possible to load Objectify entities directly to the entry points without using any call to server side? I've read several tutorials about this topic but all of them either make a RPC call or use other servlet instead.

OR

Is there anyway to use GWT classes (such as Label, Textbox etc) in a servlet outside the entry point?

I am okay if any of the questions above answered. This is a quite general question, so if you have any reference for them I will appreciate it as well. Let me know if I need to add anything, and thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小霸王臭丫头 2025-01-01 12:32:00

GWT 应用程序在客户端而不是服务器上运行。然而,Objectify 是服务器端的。

GWT 必须使用某种方式与服务器进行通信。从技术上讲,可以编写一个像 Objectify 这样的库来自动为您完成所有这些工作,但这不是一个好主意,因为它需要客户端和服务器之间进行大量通信。客户端应该向服务器发送高级命令/查询,并让服务器完成大部分工作。

GWT apps run on the client not the server. Objectify however is server side.

GWT will have to use some way to communicate with the server. Technically it would be possible to write a library like Objectify that does that all automatically for you but that would not be a very good idea as it would require to much communication between the client and the server. The client should send high level commands/queries to the server and let the server do most of the work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文