簡體   English   中英

休眠多對多數據檢索

[英]Hibernate many-to-many data retrieval

我有兩個對象User和Contact,具有多對多關系,並且我為此關系使用一個中間表USER_CONTACT

將數據保存在此關聯中很好,但是檢索是一個問題。

我需要根據用戶檢索數據,但是我得到的是所有用戶的所有聯系人。

如果您能讓我知道我在做什么錯,那將是很好的。

public class User {
private Integer userID;
private String  userLoginEmail;
private String  password;
private Set<Contact> contactSet = new HashSet<Contact>();
.
.
}

public class Contact implements Serializable {
private Integer contactID;
private String  givenName;
private String  familyName;
private Set<User>   userSet = new HashSet<User>();
.
.
}

User.hbm.xml:

<class name="User" table="USERACCOUNT">
    <id column="USER_ID" length="500" name="userID">
        <generator class="increment" />
    </id>
    <property column="USER_LOGIN_EMAIL" generated="never" lazy="false" length="100" name="userLoginEmail" />
    <property column="USER_FIRSTNAME" generated="never" lazy="false" length="100" name="userFirstName" />
    <property column="USER_LASTNAME" generated="never" lazy="false" length="100" name="userLastName" />
    <set name="contactSet" table="USER_CONTACT" inverse="false" lazy="false" fetch="select" cascade="all">
        <key column="USER_ID"/>
        <many-to-many column="CONTACT_ID" class="com.smallworks.model.Contact"/>
    </set>
</class>

Contact.hbm.xml

 <class name="Contact" table="CONTACT">
  <id column="CONTACT_ID" length="500" name="contactID">
   <generator class="increment"/>
  </id>
  <property column="GIVEN_NAME" generated="never" lazy="false"  length="100" name="givenName"/>
  <property column="FAMILY_NAME" generated="never" lazy="false" length="100" name="familyName"/>

  <!-- many to many mapping with the User via User_Contact table -->
  <set inverse="true" lazy="false" name="userSet" sort="unsorted" table="USER_CONTACT">
    <key column="USER_ID"/>
    <many-to-many class="com.smallworks.model.Contact" column="CONTACT_ID" unique="false"/>
  </set>
</class>

這就是我試圖檢索數據的方式,我認為這是不正確的。

List contactList = session.createQuery("from Contact").list();

如果我能知道如何根據用戶獲取聯系人,那將是很好的。

// First, retrieve the user you want.
User user = (User) session.get(User.class, user_id_you_want);
// Second, get the contacts of that given user and add them to a list (optional)
List contacts = new ArrayList();
contacts.addAll(user.getContactSet());
return contacts;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM