GWT-Objectify:基本
我已经阅读了一些文档,但还无法与数据存储进行通信...任何人都可以给我一个在 GWT Web 应用程序中使用的 objectify 示例项目/代码(我使用 eclipse)...只是一个简单的'使用 RPC 的 put 和 get 操作应该做...或者,至少告诉我它是如何完成的
I've been through a few documentations, but am not able to communicate to the datastore yet...can anyone give me a sample project/code of objectify used in GWT web app(I use eclipse)...just a simple 'put' and 'get' action using RPC should do...or, atleast tell me how its done
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
了解如何使 objectify 工作的最简单方法是重复 中描述的所有步骤本文来自 David 的钱德勒博客。如果您对 GWT、GAE(Java)、gwt-presenter、gin\guice 等感兴趣,整个博客是必读的。在那里你会找到工作示例,但无论如何这里我将展示一个稍微高级的示例。
在
shared
包中定义您的实体/模型:Time 类(也是
shared
包)仅包含一个字段 msecs:将类
ObjectifyDao
从上面的链接复制到您的server.dao
包。然后专门为 MyEntry 创建 DAO 类 -- MyEntryDAO:最后我们可以向数据库(
server
包)发出请求:Easiest way to understand how to make objectify work is to repeat all steps described in this article from David's Chandler blog. Whole blog is a pretty much must read if you interested in GWT, GAE(Java), gwt-presenter, gin\guice,etc. There you will find working example, but anyway here i'll show a slighly advanced example.
In package
shared
define your entity/model:Time class (also
shared
package) contains just one field msecs:Copy class
ObjectifyDao
from link above to yourserver.dao
package. And then make DAO class specifically for MyEntry -- MyEntryDAO:Finally we can make requests to database(
server
package):