在Google App Engine Java本地数据存储中添加/编辑实体
以下与 GAE/J 本地开发设置相关:
如何在本地数据存储中添加/编辑实体(最好使用某些 UI)?
_ah/admin
仅允许查看实体。在本地 JUnit 测试用例中,如何访问本地 Web 应用程序写入的相同数据存储数据?我按照 http://code.google.com 编写测试用例/appengine/docs/java/tools/localunittesting.html,但测试用例访问的数据与网络应用程序使用的数据不同。
如何在 clean-build 之间保存本地数据存储数据(现在 local_db.bin 写入目标目录,该目录时不时地被清理)
正在使用的堆栈:
- Google AppEngine for Java - (gae sdk 1.4/java sdk 6)、
- Netbeans-6.9.1、
- Maven-2 (maven-gae-plugin 0.7.3)
Following are related to GAE/J local development setup:
How do i add/edit entities in local datastore (preferably using some UI)?
_ah/admin
allows only to view entities.In the local JUnit test cases, how to access the same datastore data that my local web application writes to? I wrote my Test Cases in accordance with http://code.google.com/appengine/docs/java/tools/localunittesting.html but the test cases don't access the same data that the web application uses.
How to save local datastore data between clean-build (right now local_db.bin is written in the target directory which gets cleaned every now and then)
Stack being used :
- Google AppEngine for Java - (gae sdk
1.4/ java sdk 6), - Netbeans-6.9.1,
- Maven-2 (maven-gae-plugin 0.7.3)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
local_db.bin
进行备份。同样,理想情况下,您应该在设计应用程序时考虑到轻松重新加载数据。local_db.bin
part of your build process. Again, you should ideally design your app with easy reloading of data in mind.现在您可以使用命令行客户端保存/加载实体
Now you can save/load entities using a command line client