Hibernate递归查询
我想要的查询是获取属于某个类别的课程对象的列表。我的对象如下:
public class Course{
String name;
List<Category> categories;
}
public class Category{
String name;
Category parent;
}
由于类别相互引用,因此它们可以具有无限的深度:
A
A.A
A.A.A
A.A.B
A.B
A.B.A
B
B.A
B.B
C
如何查询类别“AA”内的课程,并返回与 AA、AAA 和 AAB 关联的所有课程?
My desired query is to get a list of Course objects that belong to a Category. My objects are as follows:
public class Course{
String name;
List<Category> categories;
}
public class Category{
String name;
Category parent;
}
Since the categories reference each other, they can have an infinite depth:
A
A.A
A.A.A
A.A.B
A.B
A.B.A
B
B.A
B.B
C
How can I query for courses within the category "A.A", and return all Courses associated with A.A, A.A.A, and A.A.B?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您愿意使用本机 SQL 并且您的数据库支持递归公用表表达式(基本上是除 MySQL 之外的所有主要 DBMS),那么这非常简单:
If you are willing to use native SQL and your database supports recursive common table expressions (basically all major DBMS except MySQL) it's pretty easy:
因为您不知道树有多深,所以可以使用某种模式,如下所示
Because you do not know how deep is the tree, you can use some kind of pattern as follows