相当于Java中RUBY的has_many和belongs_to关系

发布于 2024-12-29 05:40:31 字数 365 浏览 1 评论 0原文

通常,为了实现链接对象,我通常使用 getter 和 setter 方法,这样我将不同类型的对象添加到另一个对象。

现在我遇到了这个 Ruby 结构,例如:

class Article < ActiveRecord::Base 
  has_many :comments 
end 
class Comments < ActiveRecord::Base 
  belongs_to :article 
end  

你能告诉我 Java 中的这个 has_manybelongs_to 相当于什么吗?基本上我想将一些类似的数据结构从 Ruby 转换为 Java。

Normally to realized linked objects, i usually use getter and setter methods and this way i add objects of different type to another object.

Now i have come across this Ruby Structure, e.g:

class Article < ActiveRecord::Base 
  has_many :comments 
end 
class Comments < ActiveRecord::Base 
  belongs_to :article 
end  

Can you tell me what is the equivalent of this has_many and belongs_to in Java. Basically i want to translate some similar data structure from Ruby to Java.

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

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

发布评论

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

评论(2

め七分饶幸 2025-01-05 05:40:31

很大程度上取决于您使用的 ORM。大多数(我认为)人们会使用 Java 中的 Hibernate。使用 Hibernate,您可以注释非常相似的关系。

@OneToMany@ManyToOne 注释似乎是您可能需要仔细查看的注释。

文章类:

public class Article {
    @OneToMany(mappedBy = "belongsTo")
    private List<Comment> comments;
    [...]
}

评论类:

public class Comment {
    @ManyToOne
    private Article belongsTo;
    [...]
}

如果你想使用另一个ORM,恐怕我帮不了你:)

Highly depends on the ORM you're using. Most (I assume) people will go with Hibernate in java. With Hibernate you have the possibility to annotate relationships quite similar.

@OneToMany and @ManyToOne annotations seem to be those which you might have to take a closer look at.

Article class:

public class Article {
    @OneToMany(mappedBy = "belongsTo")
    private List<Comment> comments;
    [...]
}

Comment class:

public class Comment {
    @ManyToOne
    private Article belongsTo;
    [...]
}

If you want to use another ORM, I'm afraid I can't help you out :)

浅暮の光 2025-01-05 05:40:31

Article 具有Comment 的集合。每个Comment 都有对其Article 的引用。

如果您询问特定的 ORM,则需要指出是哪一个。

An Article has a collection of Comments. Each Comment has a reference to its Article.

If you're asking about a specific ORM you need to indicate which one.

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