我有三个班级:
XYZ / URL /核心/数据存储/ ObjectBase.java
XYZ / URL /核心/测试/休眠/ BaseClass.java
XYZ / URL /核心/测试/休眠/ ChildClass.java
他们的代码:
ObjectBase
package xyz.url.core.datastore;
import java.util.Date;
public abstract class ObjectBase {
private final long m_id;
private final long m_version;
private final Date m_creation_time;
public ObjectBase() {
this.m_id = 0;
this.m_version = 0;
this.m_creation_time = new Date();
}
public long get_id() {
return this.m_id;
}
public long get_version() {
return this.m_version;
}
public Date get_creation_time() {
return this.m_creation_time;
}
}
BaseClass的
package xyz.url.core.test.hibernate;
import java.util.Date;
import xyz.url.core.datastore.ObjectBase;
public abstract class BaseClass extends ObjectBase {
private final Date m_another_time;
public BaseClass() {
this.m_another_time = new Date();
}
public void say_something() {
final Class<?> my_class = this.getClass();
final String output = String.format(
"Hello from the `%s` class! My id is %d!", my_class.getName(),
this.get_id());
System.out.println(output);
}
}
ChildClass
package xyz.url.core.test.hibernate;
public class ChildClass extends BaseClass {
private String m_text;
public ChildClass(final String text) {
this.m_text = text;
}
public void set_text(final String text) {
this.m_text = text;
}
public String get_text() {
return this.m_text;
}
}
目前我使用隐式多态性;我有一个HBM.XML文件用于唯一的“具体”类(ChildClass
),名为“ChildClass.hbm.xml”:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="xyz.url.core.test.hibernate"
default-access="field">
<class name="ChildClass" table="child_class">
<!-- Attributes of ObjectBase -->
<id name="m_id" column="id">
<generator class="increment" />
</id>
<version name="m_version" column="version" type="long" />
<property name="m_creation_time" column="creation_time" type="date" />
<!-- Attributes of BaseClass -->
<property name="m_another_time" column="another_time" type="date" />
<!-- Attributes of ChildClass -->
<property name="m_text" column="text" type="string" />
</class>
</hibernate-mapping>
见上文?我将这三个类的所有属性聚合到一个表中。
我想做与上面相同的事情,如上所述获得一个表(“child_class”),但将其分成三个HBM.XML文件。
我希望Hibernate(v4.1)支持某种“import”关键字,因此我可以创建三个HBM.XML文件,每个类一个,并将它们全部链接到一个。
不幸的是,他们“太聪明”了,事情变得更加复杂。如果我错了,请赐教!
请注意ObjectBase
和BaseClass
是abstract
个类。
另外值得一提的是,当我从数据库中获取一个对象时,我确切地知道它应该是什么类型,所以也许我不应该使用“discriminators”......?
当我测试当前有的内容时,这是一些控制台输出,我希望它保持这种方式,我的意思是,创建一个表,在读取时提取一个表(而不是“加入策略”我在Hibernate的文档中读到过:
Hibernate:
drop table child_class if exists
Hibernate:
create table child_class (
id bigint not null,
version bigint not null,
creation_time date,
another_time date,
text varchar(255),
primary key (id)
)
APR 14, 2012 8:49:47 AM org.hibernate.tool.hbm2ddl.SchemaExport execute
INFO: HHH000230: Schema export complete
Hibernate:
select
max(id)
from
child_class
Hibernate:
/* insert xyz.url.core.test.hibernate.ChildClass
*/ insert
into
child_class
(version, creation_time, another_time, text, id)
values
(?, ?, ?, ?, ?)
同样,我想要的是将HBM.XML分解为三个不同的文件,这样我就不必在每个具体类的描述符中编写相同的属性。就是这样。
谢谢!
答案 0 :(得分:0)
union-subclass
就是我所需要的。简单,类似OOP的继承。
答案 1 :(得分:-1)
您是否读过他评论中发布的链接barju?
9.1.5. Table per concrete class
很可能就是你想要的。并且还提到<!ENTITY allproperties SYSTEM "allproperties.xml">
来导入xml。