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.
我有两个与双向一对多关联的实体。我希望两者都独立。例如,员工和项目与一对多关系相关联,但是当我删除项目时,我希望关联的员工数据应该与 project_id 保持为空。
如何在 Hibernate 中实现这一点?
为了能够独立管理这两个实体,您必须删除数据库级别的约束。但要小心它可能导致不一致的行为和失去数据库一致性。您可以以编程方式控制一致性。