Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在@OneToMany 关系中实现“ON DELETE RESTRICT”行为?
AFAIK,如果我没有设置 CascadeType.REMOVE,则不会删除子级,但仍会删除父级。我知道这种级联类型适用于实体对象,但在数据库中,外键都具有“NO ACTION”。如何在数据库级别设置级联类型?
我也很惊讶我没有发现谷歌关于这个主题的任何有用的东西?
见评论。“NO ACTION”做我想要的。如果删除违反了约束,则不会执行并抛出错误。