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。它是双向的。
我希望唯一的级联类型是持久和合并。不删除。级联类型的唯一属性值是 ALL 或枚举上的每个其他类型之一。
这可能吗?
谢谢
像这样使用注释
@OneToMany (cascade = {CascadeType.MERGE,CascadeType.PERSIST})