- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试在 Hibernate 中映射以下表之间的关系:
create table binary (
id number not null primary key,
data blob,
entity_class varchar(255) not null,
entity_id number not null,
unique (entity_id, entity_class)
);
create table container_entity (
id number not null primary key,
...
);
二进制表应该保存任意其他表的二进制数据,“外键” - 虽然不是数据库术语 - 由 binary.entity_class
和 binary.entity_id< 组成
。这是我现在必须接受的结构,它似乎在这里引起了困惑。 binary.entity_id
列引用聚合表的主键,而 binary.entity_class
定义聚合表本身:
BINARY CONTAINER_ENTITY_A CONTAINER_ENTITY_B
id entity_class entity_id id id ...
------------------------------- ------------------ ------------------
1 ContainerEntityA 1 -> 1 ...
2 ContainerEntityB 1 -> 1
3 ContainerEntityB 2 -> 2
当以只读方式使用时,ContainerEntity 中的映射已经可以找到:
@Entity @Table(name="container_entity_a")
public class ContainerEntityA {
@Id @GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@OneToOne
@JoinColumnsOrFormulas({
@JoinColumnOrFormula(column =
@JoinColumn(name = "id", referencedColumnName = "entity_id",
insertable=false, updatable=false)),
@JoinColumnOrFormula(formula =
@JoinFormula(value = "'ContainerEntityA'", referencedColumnName = "entity_class"))
})
private Binary binary;
public void setBinary(Binary aBinary) {
aBinary.setEntityClass("ContainerEntityA");
this.binary = aBinary;
}
}
@Entity @Table(name="binary")
public class Binary {
@Column(name = "entity_id", nullable = false)
private Long entityId;
@Column(name = "entity_class", nullable = false)
private String entityClass;
}
但是我在持久化 ContainerEntity 时遇到了问题:
CascadeType.PERSIST
,Hibernate 无法设置 binary.entity_id
。如果我不使用 cascade-persist,我不知道什么时候自己设置 binary.entity_id
,如何持久化映射对象,我最终得到:
org.hibernate.TransientObjectException:对象引用未保存的 transient 实例 - 在刷新之前保存 transient 实例:ContainerEntity.binary -> Binary
换句话说,我希望但目前无法像这样持久化这两个实体:
containerEntity = new ContainerEntity();
containerEntity.setBinary( new Binary() );
entityManager.persist(containerEntity);
有什么想法或有用的建议吗?
赏金注意事项:这个问题还没有我可以接受为“正确”的答案,尽管还有一个提示我会在下周检查。不过,我的赏金时间已经结束,所以我会将它奖励给目前最接近的答案。
最佳答案
好的,请尝试以下我认为完美的方法。我已经测试并且可以按预期加载和保存容器和关联实体。
首先,容器必须从一些通用实体扩展:
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public abstract class Container {
//cannot use identity here however a table or sequence should work so long as
//the initial value is > current max ids from all container tables.
@Id
@TableGenerator(initialValue = 10000, allocationSize = 100, table = "id_gen", name = "id_gen")
@GeneratedValue(strategy = GenerationType.TABLE, generator = "id_gen")
private Long id;
public Long getId() {
return id;
}
public BinaryData getBinaryData() {
return getData().size() > 0 ? getData().get(0) : null;
}
public void setBinaryData(BinaryData binaryData) {
binaryData.setContainerClass(getName());
binaryData.setContainer(this);
this.getData().clear();
this.getData().add(binaryData);
}
protected abstract List<BinaryData> getData();
protected abstract String getName();
}
混凝土容器A.该关系必须映射为 OneToMany,但是附加的 @Where 子句(以及您的数据库唯一键)有效地使其成为 @OneToOne。此类的客户可以将其视为单端关联:
@Entity
@Table(name = "container_a")
public class ContainerA extends Container {
@OneToMany(mappedBy = "container", cascade = CascadeType.ALL)
@Where(clause = "container_class = 'container_a'")
private List<BinaryData> binaryData;
public ContainerA() {
binaryData = new ArrayList<>();
}
@Override
protected List<BinaryData> getData() {
return binaryData;
}
@Override
protected String getName() {
return "container_a";
}
}
容器B
@Entity
@Table(name = "container_b")
public class ContainerB extends Container {
@OneToMany(mappedBy = "container", cascade = CascadeType.ALL)
@Where(clause = "container_class = 'container_b'")
private List<BinaryData> binaryData;
public ContainerB() {
binaryData = new ArrayList<>();
}
@Override
protected List<BinaryData> getData() {
return binaryData;
}
@Override
protected String getName() {
return "container_b";
}
}
从 BinaryData 映射回 Container 需要使用 Hibernate 的 @Any 映射。
@Entity
@Table(name = "binary_data")
public class BinaryData {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id")
private Long id;
@OneToOne
@Any(metaColumn = @Column(name = "container_class"))
@AnyMetaDef(idType = "long", metaType = "string", metaValues = {
@MetaValue(targetEntity = ContainerA.class, value = "container_a"),
@MetaValue(targetEntity = ContainerB.class, value = "container_b") })
@JoinColumn(name = "entity_id")
private Container container;
@Column(name = "container_class")
private String containerClass;
public Long getId() {
return id;
}
public Container getContainer() {
return container;
}
public void setContainer(Container container) {
this.container = container;
}
public String getContainerClass() {
return containerClass;
}
public void setContainerClass(String containerClass) {
this.containerClass = containerClass;
}
}
以下测试按预期通过:
public class ContainerDaoTest extends BaseDaoTest {
@Test
public void testSaveEntityA() {
ContainerA c = new ContainerA();
BinaryData b = new BinaryData();
c.setBinaryData(b);
ContainerDao dao = new ContainerDao();
dao.persist(c);
c = dao.load(c.getId());
Assert.assertEquals(c.getId(), b.getContainer().getId());
}
@Test
public void testLoadEntity() {
ContainerA c = new ContainerDao().load(2l);
Assert.assertEquals(new Long(3), c.getBinaryData().getId());
Assert.assertEquals(new Long(2), c.getBinaryData().getContainer().getId());
Assert.assertEquals("container_a", c.getBinaryData().getContainerClass());
}
@Override
protected String[] getDataSetPaths() {
return new String[] { "/stack/container.xml", "/stack/binarydata.xml" };
}
}
使用以下数据集时:
<dataset>
<container_a id="1" />
<container_a id="2" />
<container_b id="1" />
<container_b id="2" />
</dataset>
<dataset>
<binary_data id="1" container_class="container_a" entity_id="1" />
<binary_data id="2" container_class="container_b" entity_id="2" />
<binary_data id="3" container_class="container_a" entity_id="2" />
<binary_data id="4" container_class="container_b" entity_id="1" />
</dataset>
关于java - 如何坚持涉及@JoinFormula 的逆@OneToOne 映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19818025/
使用 Entity entity = hibernateTemplate.get(Entity.class, id); 当我点击 entity.getChild() 这是一个 OneToOne 关系时
我刚开始玩弄 Doctrine ORM 库,我正在学习表之间的所有关联。 所以我坚持单向和双向关系的差异。 据我所知,单向关系只有一侧有主键,那一侧是拥有一侧,对吧?双向关系在两个表中都有主键,因此您
我只用@OneToOne 注释我的字段,当我检查数据库(使用 liquibase 生成)时发现数据库列有唯一约束。 这是否意味着@OneToOne 本身就意味着唯一性,例如。一栋建筑只能在一个城市,其
当我同步我的数据库时,我收到了 的错误module' 对象没有属性 'OneToOnefield' models.py 的代码如下: from django.db import models from
我们想使用不在主表中但在从表中的外键创建单向@OneToOne映射。通过提供以下Java代码,Hibernate尝试在表product_ID中找到product列,但在productimage中找不到
我有以下问题。我有 3 个实体,我正在使用 OneToOne 单向: 实体 1 @Entity public class Entity1 implements Serializable{ @Id
我有 2 个类:User 和 UserPicture,它们具有 1:1 关系。 public class User { @Id @GeneratedValue(strategy=G
考虑以下数据库结构 我需要像这样实现单向一对一映射(结构已简化): @Entity @Table(name = "entity") public class Customer { @Id
我有一个实体:HtmlElement,与实体有以下@OneToOne关系:Component 查询参数实体: @Id @Column(name = "QUERY_PARAMETER_ID") priv
我有两个例子,第一个是@OneToOne单向映射,第二个是双向映射。在单向映射中,拥有方表必须包含引用对方表id的连接列;那么在双向中,它们都必须包含彼此的外键列。但是使用自动生成策略生成数据库模式后
我尝试使用 @OneOnOne 关系创建两个表(主表和辅助表) 。(我使用的是 Postgres ) 我这样定义初级表: Class Table1{ @GeneratedValue @Id @Colu
我想创建一个 @OneToOne 映射,其中根实体通过外键约束引用子实体。 @Entity public class MainEntity { @Id private long id;
我有以下实体: //The class Entity is a @MappedSuperclass with id, audit fields, equals and so on. @Entity p
我创建实体 Developer 和 TalentFile,我希望一个开发人员有一个文件 (Cv),当我设置实体时,我已经提交了 null /** * Developers * * @ORM\Table
我正在使用 play 框架 (v2.3.1),并且我有 2 个模型对象;用户和位置。他们彼此之间存在一对一的关系。保存按预期进行,但是当我想从数据库中检索用户时,该位置为空。 我的类(class):
关系所有者中的双向一对一映射是否需要 unique=true? @Entity public class Customer { @Id @GeneratedValue(strategy
我是 UML 图的新手,想编写下面的代码,其中有一个 OneToOne 双双向关联,带有 JPA 注释。 上下文:有个人和团队。每个团队由人组成,每个人只能属于一个团队。团队总是有一个人充当主要领导者
我正在尝试使用 JPA/Hibernate 设置下表: User: userid - PK name Validation: userid - PK, FK(user) code 可能有很多用户,每个
OneToOne 垂直扩展表字段是很常见的方法, 主表存商品资料, 分表存每个客户对应商品的备注和个性化的价格等等, 本文使用Blazor一步步实现这个简单的需求. 1. 基于 实战 10分
假设我有一个 Person 实体和一个 Animal 实体;一个人可以有两个最喜欢的动物,一个动物只能有一个 人喜欢他们的人(一个人喜欢一种动物使得其他人不再可能喜欢/看到该动物)。它是一个@OneT
我是一名优秀的程序员,十分优秀!