0
我有一個名爲Rule的類,它包含一組childRules(Set的每個組件都是其他類)。我正在做一個標記爲lazy =「false」的HQL查詢。Java HQL樹顯示
我面臨的問題是,HQL帶出的類匹配我的搜索模式在頂層,但這些類可以有一個childRules不匹配模式。
我的問題是關於如何才能顯示符合我的模式的規則(它們可以是childRules)。
THX
我的類看起來是這樣的:
public class Rule
{
private Set<Rule> childRules = null;
private String name = null;
private Long id = null;
private Long parentId = null;
//with the respective setters/getter
}
你可以請張貼一些代碼? –