哪些类型需要使用 JDO dependent="true"用于级联删除?

发布于 2024-09-14 10:29:14 字数 441 浏览 5 评论 0 原文

我正在使用 JDO 注释 dependent="true" 来删除我拥有的子类,如下所示:

@Persistent(mappedBy = "parent")
@Order(column="PARENT_CHILD_IDX")
@Element( dependent="true" )    
private ArrayList< Child> children = new ArrayList< Child >();

我是否需要对其他非自定义数据类型(例如 Long、String、Link、Blob 和 Text)执行此操作?枚举?

    @Persistent( defaultFetchGroup="true", dependant="true" )
    private Text veryLongString;

I'm using the JDO annotation dependent="true" to delete my owned child classes like this:

@Persistent(mappedBy = "parent")
@Order(column="PARENT_CHILD_IDX")
@Element( dependent="true" )    
private ArrayList< Child> children = new ArrayList< Child >();

Do I need to do this for other non-custom data types like Long, String, Link, Blob, and Text? enums?

    @Persistent( defaultFetchGroup="true", dependant="true" )
    private Text veryLongString;

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

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

发布评论

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

评论(1

孤蝉 2024-09-21 10:29:14

我在 appengine-java 组上问了类似的问题,得到的答复是:

 If you delete an entity, Text and Blob properties in that entity will be deleted as well. 

I asked a similar question on the appengine-java group and the response is:

 If you delete an entity, Text and Blob properties in that entity will be deleted as well. 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文