JPA @EmbeddedId 未生成序列
我有一张表,其中包含一个序列和两个外键的复合主键 我能够保留我的实体类,但它没有根据顺序生成。具有由一个序列和两个外键组成的复合主键的表,maven 中的 hbm2java 给出以下实体
这是主要实体
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 但没有用。 请建议。
I have a table which has composite primary key consisting one sequence and two foreign keys
I am able to persist My entity class but it is not generating according to the sequence. The table which has composite primary key consisting one sequence and two foreign keys, hbm2java in maven gives following entities
Here is the Main Entity
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;
}
}
Here is the embedded PK class.
/**
* 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;
}
}
Here I am expecting the Id to be autogenerated...
I have only added
@NaturalId
and
@GeneratedValue(strategy=GenerationType.SEQUENCE)
I have also tried with GenerationType.AUTO
but did not work.
Please suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此问题有一个解决方法。我也遇到过同样的情况,有 4 个字段作为组合键,其中 1 个需要按序列生成。
我根本没有创建嵌入式类,只有 1 个需要按序列生成的 @Id 字段。其余所有字段值都将是简单列,因为数据库中强制执行引用完整性,而且我正在检查代码中其余 3 个字段的值是否不为空。
如果出现错误,事务将回滚。
There's one workaround for this issue. I've faced the same condition, have 4 fields as composite keys, out of which 1 need to be generated by sequence.
I've not created Embedded class at all, only have 1 @Id field which need to be generated by sequence. Rest all field values will be simple columns, as referential integrity are enforced in DB and also I'm checking values of rest of 3 fields in code to be not null.
In case of error the transaction will rollback.
只是想添加我的 2c。这适用于复合主键和单个主键。防止创建序列,而是从表中选择 max + 1。
Identific.java
CompositeKeyEntity.java
SingleKeyEntity.java
AssignedIdentityGenerator.java
Customer.java
CustomerItemsId.java(在 SingleKeyEntity 示例之后省略了 Item.java)
CustomerItems.java
Just wanna to add my 2c. This works with composite and single primary keys. Prevent for creating sequences, instead, select max + 1 from the table.
Identifiable.java
CompositeKeyEntity.java
SingleKeyEntity.java
AssignedIdentityGenerator.java
Customer.java
CustomerItemsId.java (Item.java ommited as it follows SingleKeyEntity example)
CustomerItems.java