在开发环境数据存储中预加载数据的便捷方法
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有几个选择:
a. 在构建步骤中备份并重新加载
local_db.bin
b. 使用
datastore.backing_store
系统属性:You have a couple of options:
a. backup and reload
local_db.bin
in your build stepsb. use the
datastore.backing_store
system property with: