版块部分、帖子部分的annotation:
@OneToMany(cascade={CascadeType.REMOVE}, mappedBy="category")
测试部分:
category.setId(id);
session.delete(category);
结果:
没有达到预想的效果,把帖子和评论都删了报错:
Cannot delete or update a parent row: a foreign key constraint fails (`_bbs`.`invitation`, CONSTRAINT `FKBE1153B98A914BA1` FOREIGN KEY (`category_id`) REFERENCES `category` (`id`))