Insert to JPA collection without loading it(插入到 JPA 集合而不加载它)
本文介绍了插入到 JPA 集合而不加载它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在使用这样的代码向我的实体中的集合添加新条目.
I'm currently using code like this to add a new entry to a set in my entity.
player = em.find(Player.class, playerId);
player.getAvatarAttributeOwnership().add(new AvatarAttributeOwnership(...));
它有效,但每次我想添加一个项目时,都会加载整个集合.
It works, but every time I want to add one item, the whole set is loaded.
- 有没有办法(可能有查询)添加项目而不加载其余项目?在 SQL 中,它类似于
INSERT INTO AvatarAttributeOwnership(player, data, ...) VALUES({player}, ...);
目前唯一性是由Set
和AvatarAttributeOwnership.equals
的合约维护的,但我认为这将不再有效.无论如何我该如何执行?
- Is there a way (with a query maybe) to add the item without loading the rest? In SQL it would be something like
INSERT INTO AvatarAttributeOwnership(player, data, ...) VALUES({player}, ...);
Currently uniqueness is maintained by the contract ofSet
andAvatarAttributeOwnership.equals
, but I assume that won't work anymore. How can I enforce it anyway?
我正在使用 JPA2+Hibernate.代码:
I'm using JPA2+Hibernate. Code:
@Entity
public class Player implements Serializable {
@Id
@GeneratedValue
private long id;
@ElementCollection(fetch=FetchType.LAZY)
// EDIT: answer to #2
@CollectionTable(uniqueConstraints=@UniqueConstraint(columnNames={"Player_id","gender","type","attrId"}))
Set<AvatarAttributeOwnership> ownedAvatarAttributes;
...
}
@Embeddable
public class AvatarAttributeOwnership implements Serializable {
@Column(nullable=false,length=6)
@Enumerated(EnumType.STRING)
private Gender gender;
@Column(nullable=false,length=20)
private String type;
@Column(nullable=false,length=50)
private String attrId;
@Column(nullable=false)
private Date since;
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
AvatarAttributeOwnership other = (AvatarAttributeOwnership) obj;
if (!attrId.equals(other.attrId)) return false;
if (gender != other.gender) return false;
if (!type.equals(other.type)) return false;
return true;
}
...
}
推荐答案
试试 超懒集合:
@LazyCollection(LazyCollectionOption.EXTRA)
这篇关于插入到 JPA 集合而不加载它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:插入到 JPA 集合而不加载它
基础教程推荐
猜你喜欢
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01