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.
我想将所有实体设置为使用动态插入和动态更新,但避免在每个类的基础上这样做:
@javax.persistance.Entity @org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true) public class User
有没有办法在整个 entityfactory 中默认打开 dynamicInsert 和更新,这样我就可以省略第二个 @Entity 声明?
根据此处的答案,这是不可能的,因为它的实现没有优化。
所以唯一的方法是将它应用到你想要这种行为的每个类上,但要小心,它确实有缺点。检查这个。