如何更改 Objectify 中的键

发布于 2024-12-08 16:08:49 字数 252 浏览 3 评论 0原文

我有一个问题。我曾经有一个拥有 @id private String key 的实体。但现在我必须将其更改为 @id 私人长密钥。问题是 Objectify 不让我这么做。我收到一个

IllegalStateException: Loaded Entity has name but com.XX.YYY.MyClass has no String @id

所以我不知道该怎么做。

I have a problem. I used to have an entity that had a @id private String key . But now I have to change that to a @id private Long key. Problem is Objectify wont let me. I get an

IllegalStateException: Loaded Entity has name but com.XX.YYY.MyClass has no String @id

So Im not sure what to do.

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

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

发布评论

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

评论(1

や莫失莫忘 2024-12-15 16:08:49

我不了解 Objectify(所以希望有了解的人可以介入),但假设 Objectify 正在通过实体键必须具有名称或 id 之一的限制。一旦创建了实体,密钥就不可变。

重新输入密钥的唯一方法是

  1. 导出数据,在数据存储之外修复它,然后清除数据存储并重新加载,或者
  2. 创建并填充一组新的并行实体,从旧实体迁移相应的数据到新的。

在这两种情况下,您都必须手动查找并迁移引用。

这两件事都需要细心的工作。

I'm not up on Objectify (so hopefuly someone who is can step in), but assume that Objectify is passing through the restriction that an Entity key must have exactly one of a name or an id. Once an Entity is created, the key is immutable.

The only ways to re-type a key are

  1. Export the data, fix it up outside the datastore, then clear out the datastore and reload, or
  2. Create and populate a parallel set of Entities of a new kind, migrating corresponding data from the old entity to the new.

In both case, you have to find and migrate references by hand.

Both of these involve careful work.

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