我有一个Entity类,它使用两个字段作为主键(一起)。这是我正在尝试的。我已经拥有了数据库,因此我不能只停止遵循此路径并创建一个主键。
@Entity
public class Account {
private String description;
private AccountPk id;
public Account (String description) {
this.description = description;
}
protected Account() {
}
@EmbeddedId
public AccountPk getId() {
return this.id;
}
public String getDescription() {
return this.description;
}
public void setId(AccountPk id) {
this.id = id;
}
public void setDescription(String description) {
this.description = description;
}
}
然后我有另一个支持班
public class AccountPk {
private String code;
private Integer number;
public AccountPk() {
}
public String getCode() {
return this.code;
}
public Integer getNumber() {
return this.number;
}
public void setNumber(Integer number) {
this.number = number;
}
public void setCode(String code) {
this.code = code;
}
public int hashCode() {
int hashCode = 0;
if( code != null ) hashCode ^= code.hashCode();
if( number != null ) hashCode ^= number.hashCode();
return hashCode;
}
public boolean equals(Object obj) {
if( !(obj instanceof AccountPk) ) return false;
AccountPk target = (AccountPk)obj;
return ((this.code == null) ?
(target.code == null) :
this.code.equals(target.code))
&& ((this.number == null) ?
(target.number == null) :
this.number.equals(target.number));
}
}
我遇到的问题是mapper类 Account.hbm.xml ,它看起来像
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class
name="hello.Account"
table="MESSAGES">
<id
name="id"
column="MESSAGE_ID">
<generator class="increment"/>
</id>
<property
name="description"
column="DESCRIPTION"/>
</class>
</hibernate-mapping>
我确信这个xml文件是罪魁祸首,但我不知道如何以正确的方式做到这一点。所以,我将非常感谢你的帮助。
答案 0 :(得分:1)
使用<composite-id>
代替<id>
,例如:
<composite-id>
<key-property name="firstId" column="FIRST_ID_COL" type="..." />
<key-property name="secondId" column="SECOND_ID_COL" type="..." />
</composite-id>
顺便说一下,你不能使用具有复合id的生成器。你必须自己生成id。 (无论如何,复合键的生成器通常没有意义。它应该生成哪些关键组件以及何时生成?)