HIbernate 无法删除具有外键的实体。外键设置为空
Posted
技术标签:
【中文标题】HIbernate 无法删除具有外键的实体。外键设置为空【英文标题】:HIbernate Can't delete Entity with foreign key. Foreign key gets set to null 【发布时间】:2017-03-14 05:03:13 【问题描述】:这里已经以多种形式提出了这个问题,但似乎没有一个解决方案适合我。我正在尝试删除父实体,并且我希望也删除所有子实体。
我的实体:
@Entity
@Table(name = "item", catalog = "myshchema")
public class Item implements java.io.Serializable
@JoinColumn(name = "item_id", insertable = false, updatable = false, nullable = false)
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, orphanRemoval = true)
private Set<ItemCategory> categories;
/* Getters and Setters and other fields*/
项目表:
CREATE TABLE `item` (
`item_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
PRIMARY KEY (`item_id`),
UNIQUE KEY `item_id_UNIQUE` (`item_id`),
KEY `FK_ITEM_STORE_ID_idx` (`store_id`),
CONSTRAINT `FK_ITEM_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8;
还有我的另一个实体
@Entity
@Table(name = "item_category", catalog = "myschema")
@IdClass(ItemCategoryIndex.class)
public class ItemCategory implements java.io.Serializable
@Id
@Column(name = "category_id", unique = true, nullable = false, insertable = false, updatable = false)
private Integer categoryId;
@Id
private Store store;
@Id
private Item item;
@Id
private String categoryName;
/* Getters and Setters */
ItemCategory 的表:
CREATE TABLE `item_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`store_id` int(11) NOT NULL,
`item_id` int(11) NOT NULL,
`category_name` varchar(45) NOT NULL,
PRIMARY KEY (`category_id`),
UNIQUE KEY `category_id_UNIQUE` (`category_id`),
UNIQUE KEY `IDX_UNIQUE_STORE_CATEGORY` (`store_id`,`item_id`,`category_name`) USING BTREE,
KEY `FK_CATEGORY_STORE_ID_idx` (`store_id`),
KEY `FK_ITEM_CATEGORY_ID_idx` (`item_id`),
CONSTRAINT `FK_CATEGORY_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `FK_ITEM_CATEGORY_ID` FOREIGN KEY (`item_id`) REFERENCES `item` (`item_id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8;
我尝试删除这样的项目:
Item item = entityManager.find(Item.class, idList.get(i));
entityManager.remove(item);
我的日志显示 Hibernate 正在尝试将 ItemCategory 的主键设置为 null:
Hibernate: update myschema.item_category set item_id=null where item_id=?
ERROR o.h.e.jdbc.spi.SqlExceptionHelper.logExceptions 146 - Column 'item_id' cannot be null
我什至尝试循环遍历子记录并手动删除它们,但 Hibernate 仍然将此更新发布为空查询。我做错了什么?
【问题讨论】:
介意用两个表结构更新您的问题吗?看起来您的实体映射和注释也有问题。 “mappedBy”应该用在关系的非所有者中,但您在关系的所有者中使用了它,它有一个@joinColumn
。
你好,于敏君。我已经用表定义更新了我的问题。我也从所有者那里删除了 mappedBy。
【参考方案1】:
我必须把你的问题分成两部分
首先 - 让我们谈谈您的数据库架构设计。
根据您的架构,item
和 item_category
具有 一对多 关系,这意味着一个项目可以拥有/分配给不同的类别但不同的项目不能拥有/分配给相同的类别。
这完全没问题如果确实是您的业务需求,我提到它是因为它对我来说没有意义,而且这种情况很少发生。
如果您希望一个类别可以有多个项目,反之亦然,item
和 item_category
必须是 多对多 关系。另外应该有一个连接表。
第二 - 假设架构没有改变
ItemCategory
是关系的所有者,因为它有一个外键 item_id
引用 item
表。所以 ItemCategoy 应该大致看起来像这样:
@Entity
@Table(name = "item_category")
public class ItemCategory
@Id
private Integer categoryId;
private Store store;
@ManyToOne
@JoinColumn(name="item_id", /*cascade = ...*/)
private Item item;
private String categoryName;
/* Getters and Setters */
您的Item
实体大致如下所示:
@Entity
@Table(name = "item", catalog = "myshchema")
public class Item implements java.io.Serializable
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, orphanRemoval = true, mappedBy="item")
private Set<ItemCategory> categories; //`mappedBy`used here because this entity is not the owner of the relationship according to what mentioned above
/* Getters and Setters and other fields*/
要从Item
中删除所有子实体(ItemCategory
),只需
em.remove(item);
orphanRemoval
是true
,删除父级,子级也将被删除。
【讨论】:
问题是我的实体有 *.hbm.xml 文件,而 Hibernate 忽略了我的注释类。在我清理完之后,我能够按照你的建议让它工作。关于我的数据库设计,类别更像是标签,所以一个项目可以有多个类别。感谢您抽出宝贵时间查看此内容。 不客气。就像我说的,您的设计支持具有多个类别/标签的项目,但一个类别/标签不能应用于不同的项目。这是你的意图吗? 是的,这就是它的意图。【参考方案2】:在 Hibernate 中,您需要决定谁拥有关系。如果您的父方(ItemCategory)拥有该关系,您会发现 Item+ ItemCategory 的插入/删除将涉及 ItemCategory 表中 item_id 的更新(这是我从您的异常中观察到的)。在大多数情况下,这不是优选的。我们通常让孩子拥有这段关系。这是通过使用 mappedBy 完成的
(伪代码)
class Item
//...
@OneToMany(mappedBy = "item", cascade=ALL, orphanRemoval=true)
private Set<ItemCategory> categories;
class ItemCategory
//...
@ManyToOne
@JoinColumn(name="item_id")
Item item;
这里的技巧是mappedBy
【讨论】:
为什么是子类?我的逻辑告诉我它应该是一个父类...以上是关于HIbernate 无法删除具有外键的实体。外键设置为空的主要内容,如果未能解决你的问题,请参考以下文章