我们有以下两个具有多对多关联的实体:
@Entity
public class Role {
...
@ManyToMany
@JoinTable( name = "user_has_role", joinColumns = { @JoinColumn( name = "role_fk" ) }, inverseJoinColumns = { @JoinColumn( name = "user_fk" ) } )
private Set<User> userCollection;
...
}
和
@Entity
public class User {
...
//bi-directional many-to-many association to Role
@ManyToMany( mappedBy = "userCollection" )
private Set<Role> roleCollection;
...
}
如果我们想用
截断所有数据em.createQuery( "DELETE Role" ).executeUpdate();
我们必须清除“user_has_role”JoinTable中的所有关联,如this answer所示:
for ( ... )
{
A a = aDao.getObject(aId);
B b = bDao.getObject(bId);
b.getAs().remove(a);
a.getBs().remove(b);
bDao.saveObject(b);
}
有没有办法一次性删除JoinTable中的所有关联而不迭代所有数据?
也许有一个特殊的HQL命令,如DELETE Role.user_has_role
?
答案 0 :(得分:3)
虽然JPA规范清楚地写道批量操作没有级联到相关实体(第4.10节批量更新和删除操作),但我希望提供商至少处理连接表。遗憾的是,Hibernate没有,这已记录在HHH-1917中。解决方法:使用本机SQL。