在开发环境数据存储中预加载数据的便捷方法

发布于 2024-10-17 03:56:04 字数 157 浏览 4 评论 0原文

我正在使用 Maven 在 Google App Engine 上开发一个应用程序。当我运行本地服务器时,我希望在数据存储中预加载一些数据,例如本地用户表。服务器将数据存储文件放在目标目录的 WEB-INF/appengine-generate 下,并在每次构建之前对其进行清理。 有方便的方法吗?

I'm developing an application on Google App Engine using Maven. When I run the local server I would like to have some data preloaded in the datastore, such as the local user table. The server puts the datastore file under the WEB-INF/appengine-generated of the target directory and it is cleaned before every build.
Is there a convenient way to do so?

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

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

发布评论

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

评论(1

别挽留 2024-10-24 03:56:04

您有几个选择:
a. 在构建步骤中备份并重新加载 local_db.bin
b. 使用 datastore.backing_store 系统属性:

dev_appserver.sh --jvm_flag= -Ddatastore.backing_store=\path\to\local_db.bin

You have a couple of options:
a. backup and reload local_db.bin in your build steps
b. use the datastore.backing_store system property with:

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