休眠和子树异常的意外结束
我是Hibernate的新手。
我有一个POJO,其中包含一个由标签组成的POJO。标签包含在表中的另一个数据库表中,因此我执行联接以填充 pojo。Item
Set<String>
Item
我正在尝试运行一个简单的示例查询,来自“Java Persistance with Hibernate”一书中,我在其中查询。只是,由于某种原因,我得到了一个from Item item where 'hello' member of item.labels
`org.hibernate.hql.ast.QuerySyntaxException: unexpected end of subtree[from /*qualified class path*/.Item item where 'hello' member of item.labels]`
可能导致此问题的原因是什么?
这是我的POJO:
public class Item
private int uuid;
private Set<String>labels = new HashSet<String>();
@Id
public int getUuid(){
return uuid;
}
@CollectionOfElements
@JoinTable(name="labels", joinColumns=@JoinColumn(name="uuid"))
@Column(name="label")
public Set<String> getLabels(){
return labels;
}
}