我有一張表,其中包含一個序列和兩個外鍵的複合主鍵 我可以堅持我的實體類,但它不是根據序列生成的。其具有由一個序列和兩個外鍵,調用:hbm2java在行家複合主鍵表給出了以下實體JPA @EmbeddedId不生成序列
這裏是主實體
package aop.web.teacher.rmodels;
// Generated Dec 14, 2010 8:45:32 PM by Hibernate Tools 3.2.2.GA
import java.util.Date;
import javax.persistence.AttributeOverride;
import javax.persistence.AttributeOverrides;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
/**
* Schoolmaster generated by hbm2java
*/
@Entity
@Table(name = "schoolmaster", schema = "public")
public class Schoolmaster implements java.io.Serializable {
private SchoolmasterId id;
...
@EmbeddedId
@AttributeOverrides({
@AttributeOverride(name = "id", column = @Column(name = "id", nullable = false)),
@AttributeOverride(name = "districtId", column = @Column(name = "district_id", nullable = false)),
@AttributeOverride(name = "typeOfSchool", column = @Column(name = "type_of_school", nullable = false)) })
public SchoolmasterId getId() {
return this.id;
}
public void setId(SchoolmasterId id) {
this.id = id;
}
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "type_of_school", nullable = false, insertable = false, updatable = false)
public AopTeachersTypeMaster getAopTeachersTypeMaster() {
return this.aopTeachersTypeMaster;
}
public void setAopTeachersTypeMaster(
AopTeachersTypeMaster aopTeachersTypeMaster) {
this.aopTeachersTypeMaster = aopTeachersTypeMaster;
}
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "school_nature")
public AopTeachersSchoolNatureMaster getAopTeachersSchoolNatureMaster() {
return this.aopTeachersSchoolNatureMaster;
}
public void setAopTeachersSchoolNatureMaster(
AopTeachersSchoolNatureMaster aopTeachersSchoolNatureMaster) {
this.aopTeachersSchoolNatureMaster = aopTeachersSchoolNatureMaster;
}
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "district_id", nullable = false, insertable = false, updatable = false)
public AopTeachersDistrictMaster getAopTeachersDistrictMaster() {
return this.aopTeachersDistrictMaster;
}
public void setAopTeachersDistrictMaster(
AopTeachersDistrictMaster aopTeachersDistrictMaster) {
this.aopTeachersDistrictMaster = aopTeachersDistrictMaster;
}
@Column(name = "school_name", length = 50)
public String getSchoolName() {
return this.schoolName;
}
public void setSchoolName(String schoolName) {
this.schoolName = schoolName;
}
@Column(name = "school_address")
public String getSchoolAddress() {
return this.schoolAddress;
}
public void setSchoolAddress(String schoolAddress) {
this.schoolAddress = schoolAddress;
}
@Column(name = "school_phone_number", length = 12)
public String getSchoolPhoneNumber() {
return this.schoolPhoneNumber;
}
public void setSchoolPhoneNumber(String schoolPhoneNumber) {
this.schoolPhoneNumber = schoolPhoneNumber;
}
@Temporal(TemporalType.DATE)
@Column(name = "establishment_date", length = 13)
public Date getEstablishmentDate() {
return this.establishmentDate;
}
public void setEstablishmentDate(Date establishmentDate) {
this.establishmentDate = establishmentDate;
}
@Column(name = "school_no_of_teachers")
public Integer getSchoolNoOfTeachers() {
return this.schoolNoOfTeachers;
}
public void setSchoolNoOfTeachers(Integer schoolNoOfTeachers) {
this.schoolNoOfTeachers = schoolNoOfTeachers;
}
@Column(name = "school_no_of_students")
public Integer getSchoolNoOfStudents() {
return this.schoolNoOfStudents;
}
public void setSchoolNoOfStudents(Integer schoolNoOfStudents) {
this.schoolNoOfStudents = schoolNoOfStudents;
}
}
這裏是嵌入PK類。
/**
* SchoolmasterId generated by hbm2java
*/
@Embeddable
public class SchoolmasterId implements java.io.Serializable {
private long id;
private long districtId;
private long typeOfSchool;
public SchoolmasterId() {
}
public SchoolmasterId(long id, long districtId, long typeOfSchool) {
this.id = id;
this.districtId = districtId;
this.typeOfSchool = typeOfSchool;
}
@Column(name="id", nullable=false)
@GeneratedValue(strategy=GenerationType.SEQUENCE)
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
@NaturalId
@Column(name="district_id", nullable=false)
public long getDistrictId() {
return this.districtId;
}
public void setDistrictId(long districtId) {
this.districtId = districtId;
}
@NaturalId
@Column(name="type_of_school", nullable=false)
public long getTypeOfSchool() {
return this.typeOfSchool;
}
public void setTypeOfSchool(long typeOfSchool) {
this.typeOfSchool = typeOfSchool;
}
public boolean equals(Object other) {
if ((this == other)) return true;
if ((other == null)) return false;
if (!(other instanceof SchoolmasterId)) return false;
SchoolmasterId castOther = (SchoolmasterId) other;
return (this.getId()==castOther.getId())
&& (this.getDistrictId()==castOther.getDistrictId())
&& (this.getTypeOfSchool()==castOther.getTypeOfSchool());
}
public int hashCode() {
int result = 17;
result = 37 * result + (int) this.getId();
result = 37 * result + (int) this.getDistrictId();
result = 37 * result + (int) this.getTypeOfSchool();
return result;
}
}
在這裏,我希望對ID進行自動生成...... 我只加
@NaturalId
和
@GeneratedValue(strategy=GenerationType.SEQUENCE)
我也試圖與GenerationType.AUTO 但沒有不行。 請建議。
我懷疑你還沒有收到一個答案,因爲它不能完成。我有一個類似的用例(三個中的一個主鍵字段是自動生成的(PostgreSQL中的bigserial)),並且發現@GeneratedValue只能與@Id一起使用。 – 2011-06-12 11:15:09
令人驚訝的是,由於我見過的帖子數量太多,所以無法完成。我將其歸咎於不想提供某種常見用例的hibernate/jpa/eclipselink開發人員的頑固態度。其中一個'我們知道更好'的態度。 – BillR 2012-06-05 18:17:00