gpt4 book ai didi

java - Hibernate多对多数据检索

转载 作者:行者123 更新时间:2023-12-01 23:54:03 25 4
gpt4 key购买 nike

我有两个对象 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>();
.
.
}

用户.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>

联系方式.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;

关于java - Hibernate多对多数据检索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15868868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com