标签: hibernate
class Product { String name; Set<Label> labels = new HashSet<Label>(); ... }
和
class Label { String name; Set<Product> products = new HashSet<Product>(); ... }
现在我想知道如何在Hibernate中查询那些标有'A'和标签'B'的产品。 非常感谢。