Khu*_*shi 1 java many-to-many jpa named-query
牌
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;
Run Code Online (Sandbox Code Playgroud)
我想从table brandcategory中检索brandID = 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)")
Run Code Online (Sandbox Code Playgroud)
JB *_*zet 12
如果我理解正确,您希望所有品牌属于某个类别.为什么不简单地使关联双向.你可以这样做:
Category category = em.find(Category.class, categoryId);
return category.getBrands();
Run Code Online (Sandbox Code Playgroud)
如果它是单向的,那么你需要一个查询,但它比你尝试的更简单:
select b from Brand b inner join b.categoryCollection category
where category.id = :categoryId;
Run Code Online (Sandbox Code Playgroud)
您的查询没有意义:它使用不存在的关联(b.brandcategory).请记住,JPQL使用实体,它们的持久字段以及与其他实体的关联.没有别的.JPQL中不存在表.