程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> entity-@Onetomany 查詢出的集合與數據庫不一致

entity-@Onetomany 查詢出的集合與數據庫不一致

編輯:編程綜合問答
@Onetomany 查詢出的集合與數據庫不一致

@Entity
public class DeamonJob{

@OneToMany(
mappedBy = "deamonJob",
cascade = { CascadeType.ALL },
fetch = FetchType.LAZY
)
protected Set clientEnvironmentDeamonJobParams =
new LinkedHashSet();

}

@Entity
public class ClientEnvironmentDeamonJobParam{

@JoinColumn(
name = "deamonJobId",
nullable = true
)
@ManyToOne(fetch = FetchType.LAZY)
protected DeamonJob deamonJob;

}

實體映射關系如上,
"FROM DeamonJob" 我執行hql查詢出DeamonJob,

deamonJob.getClientEnvironmentDeamonJobParams(),得到param的集合,
我現在數據庫中有三條數據, 但是現在得到的param集合只有一條數據,有可能是什麼原因造成的呢?

圖片說明

圖片說明

圖片說明

最佳回答:


已解決 ,SET 去重了, 要重寫對象的 hashset方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved