1

品牌

public class Brand implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @Column(name = "BrandID", nullable = false)
    private Integer brandID;
    @Basic(optional = false)
    @Column(name = "BrandName", nullable = false, length = 100)
    private String brandName;
    @Basic(optional = false)
    @Column(name = "Description", nullable = false, length = 1000)
    private String description;
    @Column(name = "Is_Visible")
    private Boolean isVisible;
    @JoinTable(name = "brandcategory", joinColumns = {
        @JoinColumn(name = "BrandID", referencedColumnName = "BrandID")}, inverseJoinColumns = {
        @JoinColumn(name = "CategoryID", referencedColumnName = "CategoryID")})
    @ManyToMany(fetch = FetchType.EAGER)
    private Collection<Category> categoryCollection;
    @OneToMany(mappedBy = "brand", fetch = FetchType.EAGER)
    private Collection<Product> productCollection;

我想从表brandcategory whoes categoryID = :categoryID 中检索品牌ID 如何在实体品牌中为其创建命名查询?

这不起作用:

@NamedQuery(name = "Brand.getBrandListByCategory",
            query = "SELECT b FROM Brand b WHERE b.brandID =
            (SELECT bc.brandID
             FROM b.brandctegory bc
             WHERE bc.category.categoryID = :categoryID)")
4

2 回答 2

12

如果我理解正确,您需要属于某个类别的所有品牌。为什么不简单地使关联是双向的。然后你可以这样做:

Category category = em.find(Category.class, categoryId);
return category.getBrands();

如果它是单向的,那么您将需要一个查询,但它比您尝试的要简单得多:

select b from Brand b inner join b.categoryCollection category 
where category.id = :categoryId;

您的查询没有意义:它使用了不存在的关联 ( b.brandcategory)。请记住,JPQL 使用实体、它们的持久字段以及与其他实体的关联。没有别的了。JPQL 中不存在表。

于 2012-06-03T08:14:41.443 回答
0

AFAIK,在实体类中创建查询时,您不能超出实体边界。

而是使用.createNativeQuery()实体管理器的方法来创建复杂和混合的查询。

于 2012-06-03T08:10:51.483 回答