gpt4 book ai didi

java - 帮助 Hibernate Collection 外键映射

转载 作者:行者123 更新时间:2023-11-29 02:08:29 26 4
gpt4 key购买 nike

我在通过 Hibernate 中的外键让我的映射文件与元素集合一起工作时遇到了很大的困难。 Java 将尝试在下面加载这些文件并且不会有任何运行时异常,但事件表永远不会作为员工的对象加载(它将保持为空,但其他每个属性都从数据库加载)。在我的 MySQL 数据库中,我有以下内容:

表:员工

主键:username varchar

名称变量

区号整数

手机整数

地址编号整数

地址位置变量

电子邮件变量

表:事件

主键:ID INTEGER

开始日期日期时间

结束日期日期时间

客户名称变量

员工用户名 varchar

<?xml version="1.0"?>

<class name="Employee" table="Employees">
<id name="username" column="username" type="string"/>
<many-to-one name="contact" class="Contact" column="username" unique="false" update="false" insert="false" optimistic-lock="true" not-found="exception" embed-xml="true" />
</class>

<class name="Contact" table="Employees">
<id name="username" column="username" type="string"/>
<property name="name" column="name" type="string"/>
<property name="addressNumber" column="addressNumber" type="int"/>
<property name="areacode" column="areacode" type="int"/>
<property name="phone" column="phone" type="int"/>
<property name="addressLocation" column="addressLocation" type="string"/>
<property name="email" column="email" type="string"/>
</class>

<?xml version="1.0"?>

<class name="Event" table="Events">
<id name="ID" column="ID" type="int">
<generator class="assigned"/>
</id>
<property name="startDate" column="startDate" type="date"/>
<property name="endDate" column="endDate" type="date"/>
<property name="customerName" column="customerName" type="string"/>
</class>

<class name="Employee" table="Events" entity-name="Employee2">
<id name="username" column="employeeUsername" type="string"/>
<list name="events" cascade="all">
<key column="employeeUsername"/>
<list-index column="ID"/>
<one-to-many class="Event"/>
</list>
</class>

假设 hibernate.cfg.xml 文件存在并且有效(如果您觉得需要显示此文件,请告诉我)。它确实在其映射文件部分中包含了这两个文件。

我感觉我的错误可能出在我的“列表”声明中的事件集合声明中。以下是 Java 类:

package org.hibernate.employee;

导入java.util.Date;

公开课 Activity { 私有(private)整数 ID; 私有(private)日期开始日期; 私有(private)日期结束日期; 私有(private)字符串客户名;

public Event(){
System.out.println("blah");
}

/**
* @return the iD
*/
public int getID() {
return ID;
}
/**
* @param id the iD to set
*/
public void setID(int id) {
ID = id;
}
/**
* @return the startDate
*/
public Date getStartDate() {
return startDate;
}
/**
* @param startDate the startDate to set
*/
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
/**
* @return the endDate
*/
public Date getEndDate() {
return endDate;
}
/**
* @param endDate the endDate to set
*/
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
/**
* @return the customerName
*/
public String getCustomerName() {
return customerName;
}
/**
* @param customerName the customerName to set
*/
public void setCustomerName(String customerName) {
this.customerName = customerName;
}

/*

* 文件:Contact.java */

包 org.hibernate.employee;

/** * 此类代表员工的联系信息。 * */公开课联系方式{

private int username; // the contact identifier in the database
private int areacode; // the contact areacode
private int phone; // the contact phone
private String name; // the contact's name
private int addressNumber; // the contact's address number
private String addressLocation; // the contact's address location
private String email; // the contact's email

/**
* Constructs a Contact object.
*/
public Contact() {

}

/**
* @return the areacode
*/
public int getAreacode() {
return areacode;
}

/**
* @param areacode the areacode to set
*/
public void setAreacode(int areacode) {
this.areacode = areacode;
}

/**
* @return the phone
*/
public int getPhone() {
return phone;
}

/**
* @param phone the phone to set
*/
public void setPhone(int phone) {
this.phone = phone;
}

/**
* @return the name
*/
public String getName() {
return name;
}

/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}

/**
* @return the addressNumber
*/
public int getAddressNumber() {
return addressNumber;
}

/**
* @param addressNumber the addressNumber to set
*/
public void setAddressNumber(int addressNumber) {
this.addressNumber = addressNumber;
}

/**
* @return the addressLocation
*/
public String getAddressLocation() {
return addressLocation;
}

/**
* @param addressLocation the addressLocation to set
*/
public void setAddressLocation(String addressLocation) {
this.addressLocation = addressLocation;
}

/**
* @return the email
*/
public String getEmail() {
return email;
}

/**
* @param email the email to set
*/
public void setEmail(String email) {
this.email = email;
}

public String toString(){
String retVal = "";
retVal += "Address: " + this.addressNumber + " " + this.addressLocation + "\n";
retVal += "Email: " + this.email + "\n";
retVal += "Phone: " + this.areacode + " " + this.phone + "\n";
retVal += "Name: " + this.name + "\n";
return retVal;
}

public void setUsername(int username) {
this.username = username;
}

public int getUsername() {
return username;
}

/*

* 文件:Employee.java */

包 org.hibernate.employee;导入 java.util.List;

/** * 此类代表公司数据库中的员工。 * */公共(public)课员工{

private String username; // the employee's username
private Contact contact; // the employee's contact information
private List events;

/**
* Constructs an Employee object.
*/
public Employee() {
super();
}

/**
* @return the username
*/
public String getUsername() {
return username;
}

/**
* @param username the username to set
*/
public void setUsername(String username) {
this.username = username;
}

/**
* @return the contact
*/
public Contact getContact() {
return contact;
}

/**
* @param contact the contact to set
*/
public void setContact(Contact contact) {
this.contact = contact;
}

/**
* @return the events
*/
public List getEvents() {
return events;
}

/**
* @param events the events to set
*/
public void setEvents(List events) {
this.events = events;
}

public String toString(){
String retVal = "";
System.out.println(events);
retVal += "Username: " + username + "\n";
retVal += "Contact: " + contact + "\n";
return retVal;
}

最佳答案

您的映射有两个(主要)原因是错误的:

  1. 以这种方式将 Employee 和 Contact 映射到同一个表是行不通的。 many-to-one需要一个外键(例如一个单独的列);您正在尝试重用主键。
  2. 将 Employee 类重新映射到不同的表也不会起作用 - 表和类不兼容。使用不同的实体名称可防止立即出错,但这不是正确的用法。

你应该做的是:

  1. map Contact作为component .
  2. 直接在 Employee 上映射事件集合作为one-to-many协会。

类似于:

<class name="Employee" table="Employees">
<id name="username" column="username" type="string"/>

<component name="Contact" class="Contact"> <!-- class attribute optional -->
<property name="name" column="name" type="string"/>
<property name="addressNumber" column="addressNumber" type="int"/>
<property name="areacode" column="areacode" type="int"/>
<property name="phone" column="phone" type="int"/>
<property name="addressLocation" column="addressLocation" type="string"/>
<property name="email" column="email" type="string"/>
</component>
<list name="events" cascade="all">
<key column="employeeUsername"/>
<list-index column="event_idx"/>
<one-to-many class="Event"/>
</list>
</class>

请注意 list-index如果你想将事件列表映射为有序列表,那么你的表中应该是一个单独的列;你不能将它映射到 id。如果您不想将其定义为列,您可以将列表映射为 <bag>相反(并且,可选地,指定 order-by 属性以对该包进行排序)或将其映射为 composite elements 的集合每个事件将不再是一个独立的实体。这是否适用取决于您的业务需求。

关于java - 帮助 Hibernate Collection 外键映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1648227/

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